-
Home
-
BBH Custom Schema – Add Custom JSON-LD to Your Website
- Tips
How to Hide BBH Custom Schema – Add Custom JSON-LD to Your Website Admin Menus
function plt_hide_bbh_custom_schema_menus() {
//Hide "BBH Custom Schema".
remove_menu_page('bbhcuschma-report');
//Hide "BBH Custom Schema → Content Schema Report".
remove_submenu_page('bbhcuschma-report', 'bbhcuschma-report');
//Hide "BBH Custom Schema → Settings".
remove_submenu_page('bbhcuschma-report', 'bbhcuschma-settings');
//Hide "BBH Custom Schema → Quick Start".
remove_submenu_page('bbhcuschma-report', 'bbh-schema-quick-start');
//Hide "BBH Custom Schema → Documentation".
remove_submenu_page('bbhcuschma-report', 'bbhcuschma-documentation');
}
add_action('admin_menu', 'plt_hide_bbh_custom_schema_menus', 11);
Where do I put this code?
How to Hide the "BBH Custom Schema" Meta Box
function plt_hide_bbh_custom_schema_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "BBH Custom Schema" meta box.
remove_meta_box('bbhcuschma_custom_schema_box', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_bbh_custom_schema_metaboxes', 20);