How to display the featured image of a page in the page itself automatically in WordPress? [closed]

倖福魔咒の 提交于 2020-01-02 05:22:01

问题


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.



来源:https://stackoverflow.com/questions/15629413/how-to-display-the-featured-image-of-a-page-in-the-page-itself-automatically-in

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!