Featured image is not displaying on wp-admin side. I have also selected 'featured image' option from Screen Options. While Selecting image from media it doesn't show selected image in the metabox. I have written the below code:
function twentytwelve_setup() {
add_theme_support('post-thumbnails');
}
add_action( 'after_setup_theme', 'twentytwelve_setup' );
Featured image is not displaying on wp-admin side. I have also selected 'featured image' option from Screen Options. While Selecting image from media it doesn't show selected image in the metabox. I have written the below code:
function twentytwelve_setup() {
add_theme_support('post-thumbnails');
}
add_action( 'after_setup_theme', 'twentytwelve_setup' );
Have you double checked if the featured-image section is enabled under the Screen Options
tab?
You can disable/comment these plugin/code one by one by which having remove_meta_box() function.
remove_meta_box
function is used to removes a meta box or any other element from a particular post edit screen of a given post type. It can be also used to remove a widget from the dashboard screen.
Once you filter this things you get the cause point. Best of luck!