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

时间:2013-05-09 20:32:01

标签: php wordpress themes wordpress-theming

我在本地wampp服务器上安装了wordpress。问题是指第一次安装(二十次)后wordpress的默认主题。

我创建了一个测试帖,我试图在帖子中显示特色图片。据我所知,我需要使用该功能:

   the_post_thumbnail

但是,由于我对wordpress主题开发不是很熟悉,我不知道如何使用这个函数或者我应该修改模板文件中的哪个文件。非常感谢您对此问题的任何帮助。

2 个答案:

答案 0 :(得分:4)

您需要在 WordPress Loop内的中调用该功能。使用以二十世界主题为例,打开single.php(这是您单个帖子的详细视图的默认模板)。您可以在第15 - 27行之间的任何位置使用此功能。

如果您想在页面(而不是帖子)中显示图片,那么您将改为编辑page.php

Codex提供了有关如何使用the_post_thumnail()功能的更详细信息(例如,如何请求不同的图像大小)。

玩得开心!

答案 1 :(得分:0)

非常简单: 打开你的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;

多数民众赞成,问题将得到解决。