-
Home
-
Header and Footer Scripts
- Tips
How to Hide the "Header and Footer Scripts" Admin Menu
function plt_hide_header_and_footer_scripts_menus() {
//Hide the "Settings → Header and Footer Scripts" menu.
remove_submenu_page('options-general.php', 'header-and-footer-scripts/shfs.php');
}
add_action('admin_menu', 'plt_hide_header_and_footer_scripts_menus', 11);
Where do I put this code?
How to Hide the "Insert Script to head" Meta Box
function plt_hide_header_and_footer_scripts_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Insert Script to head" meta box.
remove_meta_box('shfs_all_post_meta', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_header_and_footer_scripts_metaboxes', 20);