Remove ‘featured image’ meta box

add_action('do_meta_boxes', 'supercore_remove_thumbnail_box');
function supercore_remove_thumbnail_box() {
remove_meta_box( 'postimagediv','post','side' );
}

‘post’ can be: post, page or a post-type

0 comments
Submit comment