Code-Snippets-Functions/Execute a function on a child site/Jetpack/remove-feature-hints.txt

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' );