How can I remove the Featured Image meta box? I’ve tried using the remove_meta_box
function and specifying the boxes ID but it doesn’t seem to work like it does for the other native meta boxes.
Here is the specific code I tried:
add_action( 'admin_menu', 'remove_thumbnail_box' );
function remove_thumbnail_box() {
remove_meta_box( 'postimagediv', 'post', 'side' );
}
I haven’t had time to test this but this looks like it should work for you.
Check this for more info.
Edit: The main change here is that you need to attach the function to do_meta_boxes instead of admin_menu
The post thumbnail is added to a post type as something this post type supports. If you want to remove post thumbnail functionality from a post type, you can call
remove_post_type_support()
. Regular posts are also defined as custom post types, so it should work for them too.WordPress seems to only disable the featured images when calling action do_meta_boxes also use “post.php” as the post type instead of “post”, I don’t know why this is as it contradicts the documentation. Warning the do_meta_boxes seems to fire before function wp_get_current_user() becomes available so you won’t be able to disable based on user type, it’s all or nothing. Maybe someone else knows of a work around.
You can either remove it immediately after creating the custom post type or remove it later on using a hook like
init
.Option #1: Remove it immediately after creating your custom post type:
Option #2: Remove it from an existing post type: