-
Home
-
Header Footer Custom Html
- Tips
How to Hide Header Footer Custom Html Admin Menus
function plt_hide_header_footer_custom_html_menus() {
//Hide "Header footer Custom Html".
remove_menu_page('header-footer-custom-html');
//Hide "Header footer Custom Html → Global Settings".
remove_submenu_page('header-footer-custom-html', 'header-footer-custom-html');
//Hide "Header footer Custom Html → All HFCH Settings".
remove_submenu_page('header-footer-custom-html', 'edit.php?post_type=enwb_hfch_settings');
//Hide "Header footer Custom Html → Add New".
remove_submenu_page('header-footer-custom-html', 'post-new.php?post_type=enwb_hfch_settings');
//Hide "Header footer Custom Html → Documentation".
remove_submenu_page('header-footer-custom-html', 'https://www.enweby.com/documentation/header-footer-custom-html-documentation');
//Hide "Header footer Custom Html → Contact Us".
remove_submenu_page('header-footer-custom-html', 'header-footer-custom-html-contact');
}
add_action('admin_menu', 'plt_hide_header_footer_custom_html_menus', 1000000000);
Where do I put this code?
How to Hide the "Page/Post wise Header Footer Settings" Meta Box
function plt_hide_header_footer_custom_html_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Page/Post wise Header Footer Settings" meta box.
remove_meta_box('hfch-header-html', $screen->id, 'advanced');
}
add_action('add_meta_boxes', 'plt_hide_header_footer_custom_html_metaboxes', 20);