Show Featured Image in Wordpress Editor

I'm creating a website with wordpress but I cannot see featured image in both screen options or editor

Ed

enter image description here

This is blank Wordpress install 5.3.2, I develop new web from scratch so I don't think problem related to other plugins

Upvotes: 0

Views: 253

Answers (1)

Kalti
Kalti

Reputation: 501

Go into your themes functions.php and paste the following code inside:

add_theme_support( 'post-thumbnails' );

Reference: https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/

Hope you can use it to solve your problem.

Upvotes: 1

Related Questions