Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Featured image option is not displaying in wordpress admin area [closed]

Featured image option is not displaying in wordpress admin area

I am very new in wordpress. I have a wordpress site and now i need to add a featured image in my post. But i am not getting this option in back end. I don't know what is wrong. somebody please help me.Thanks

like image 828
user3595293 Avatar asked Nov 27 '22 03:11

user3595293


1 Answers

Add this code to the functions.php file of your theme:

// This theme uses post thumbnails
add_theme_support( 'post-thumbnails' );
like image 175
Jaume Avatar answered Dec 10 '22 16:12

Jaume