mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
17 lines
452 B
Text
17 lines
452 B
Text
add_action( 'admin_menu', function () {
|
|
remove_submenu_page( 'index.php', 'relevanssi_admin_search' );
|
|
add_menu_page(
|
|
'Search all content',
|
|
'Search all content',
|
|
'manage_options',
|
|
'relevanssi_admin_search',
|
|
'relevanssi_admin_search_page',
|
|
'dashicons-search',
|
|
2
|
|
);
|
|
}, 99 );
|
|
|
|
add_filter( 'relevanssi_acceptable_hooks', function( $hooks ) {
|
|
$hooks[] = 'toplevel_page_relevanssi_admin_search';
|
|
return $hooks;
|
|
} );
|