Edit File by line
/home/zeestwma/richards.../wp-conte.../plugins/jetpack/modules/scan
File: scan.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Jetpack Scan features that show up on the jetpack admin side.
[2] Fix | Delete
* - Adds a admin bar notice when the site has threats.
[3] Fix | Delete
*
[4] Fix | Delete
* @package automattic/jetpack
[5] Fix | Delete
*/
[6] Fix | Delete
[7] Fix | Delete
namespace Automattic\Jetpack\Scan;
[8] Fix | Delete
[9] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[10] Fix | Delete
exit( 0 );
[11] Fix | Delete
}
[12] Fix | Delete
[13] Fix | Delete
if ( ! apply_filters( 'jetpack_disable_scan', false ) ) {
[14] Fix | Delete
require_once __DIR__ . '/class-admin-bar-notice.php';
[15] Fix | Delete
require_once __DIR__ . '/class-admin-sidebar-link.php';
[16] Fix | Delete
[17] Fix | Delete
Admin_Bar_Notice::instance();
[18] Fix | Delete
Admin_Sidebar_Link::instance();
[19] Fix | Delete
}
[20] Fix | Delete
[21] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function