zhaoJian's Tech Notes

Solution for WordPress Add Article/Page Cannot Find Featured Image Function

Technology ~372 words · 1 min read - views

Recently made a theme myself, and when adding WordPress articles and pages, I found there was no “Set Featured Image” function. After uploading images, couldn’t find the featured image function.

The solution is to add the following line of code in the functions.php file in the template folder:

add_theme_support( 'post-thumbnails' );

Refresh, problem solved.

Share:

Comments