-
Home
-
Head, Footer and Post Injections
- Tips
How to Hide the "Head and Footer" Admin Menu
function plt_hide_header_footer_menus() {
//Hide the "Settings → Head and Footer" menu.
remove_submenu_page('options-general.php', 'header-footer/admin/options.php');
}
add_action('admin_menu', 'plt_hide_header_footer_menus', 11);
Where do I put this code?
How to Hide the "Head and Footer" Meta Box
function plt_hide_header_footer_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Head and Footer" meta box.
remove_meta_box('hefo', $screen->id, 'advanced');
}
add_action('add_meta_boxes', 'plt_hide_header_footer_metaboxes', 20);