How to display the featured image of a page in the

2019-05-07 23:04发布

问题:

Please i need your help with the following.

The features images that i am setting for my pages are not getting displayed in the pages themselves. Is there any plugin or something i can do in order to let those featured images that i am setting for posts and pages to get displayed inside the corresponding entry?

Any suggestions are greatly appreciated!

回答1:

Put:

<?php 
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}  ?>

in the template where you want the featured image to display.