-
Home
-
Hide Featured Image
- Tips
How to Hide the "Hide Featured Image" Admin Menu
function plt_hide_hide_featured_image_menus() {
//Hide the "Settings → Hide Featured Image" menu.
remove_submenu_page('options-general.php', 'sh_hide_options');
}
add_action('admin_menu', 'plt_hide_hide_featured_image_menus', 11);
Where do I put this code?
How to Hide the "Hide Featured Image?" Meta Box
function plt_hide_hide_featured_image_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Hide Featured Image?" meta box.
remove_meta_box('hide_featured', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_hide_featured_image_metaboxes', 20);