Featured image is not showing in wp-admin

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' );

2 Answers
2

Have you double checked if the featured-image section is enabled under the Screen Options tab?

enter image description here

Leave a Comment