mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
5 lines
223 B
Text
5 lines
223 B
Text
function jetpackcom_remove_search_hints( $tools ) {
|
|
unset( $tools[ array_search( 'plugin-search.php', $tools, true ) ] );
|
|
return $tools;
|
|
}
|
|
add_filter( 'jetpack_tools_to_include', 'jetpackcom_remove_search_hints' );
|