Reputation: 4518
I'm creating a website with wordpress
but I cannot see featured image in both screen options
or editor
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
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