jetpack.php
8 months ago
search-0.15.2.php
8 months ago
search-0.17.0.php
8 months ago
unsupported-browsers.php
8 months ago
jetpack.php
33 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Jetpack compatibility |
| 4 | * |
| 5 | * @package automattic/jetpack-search |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Search\Compatibility\Jetpack; |
| 9 | |
| 10 | use Jetpack; |
| 11 | |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit( 0 ); |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Override the condition to show Search submenu when Jetpack plugin exists. |
| 18 | */ |
| 19 | function should_show_jetpack_search_submenu() { |
| 20 | if ( ! current_user_can( 'manage_options' ) ) { |
| 21 | return false; |
| 22 | } |
| 23 | |
| 24 | // If site is in Offline Mode or not connected yet. |
| 25 | if ( ! Jetpack::is_active_and_not_offline_mode() ) { |
| 26 | return false; |
| 27 | } |
| 28 | |
| 29 | return true; |
| 30 | } |
| 31 | |
| 32 | add_filter( 'jetpack_search_should_add_search_submenu', __NAMESPACE__ . '\should_show_jetpack_search_submenu' ); |
| 33 |