在post-wordpress主题中显示特色图片

我已经在本地wampp服务器上安装了wordpress。问题是指首次安装(twentytwelve)之后, wordpress随附的默认主题。
【在post-wordpress主题中显示特色图片】我创建了一个测试帖子, 并尝试在帖子内部显示精选图片。据我了解, 我需要使用以下功能:

the_post_thumbnail

但是, 由于我对wordpress主题开发不是很熟悉, 所以我不知道如何使用此功能或应修改的模板文件中的哪个文件。非常感谢你提供有关此问题的任何帮助。
#1你将要从WordPress循环中调用该函数。以二十二个主题为例, 打开single.php(这是你单个帖子的详细信息视图的默认模板)。你可以在第15-27行之间的任何位置使用此功能。
如果要在页面(而不是帖子)中显示图像, 则应编辑page.php。
食品法典委员会提供了有关如何使用the_post_thumnail()函数(例如, 如何请求其他图像大小)的更多详细信息。
玩得开心!
#2非常简单:打开style.css搜索
@media screen and (max-width: 400px) {or search.list-view .site-content .cat-links, .list-view .site-content .type-post .entry-content, .list-view .site-content .type-page .entry-content, .list-view .site-content .type-post .entry-summary, .list-view .site-content .type-page .entry-summary, .list-view .site-content footer.entry-meta { /*display: none; jay*/ }and comment this line display: none;

就是这样, 问题将得到解决。

    推荐阅读