wordpress模板布局single.php

时间:2017-03-31 14:56:38

标签: wordpress templates

我需要在wordpress模板中自定义single.php模板。 在我的single.php中,我有这一行

我的新模板需要显示帖子图片,发布日期,发布文字。

我怎么做?

由于

1 个答案:

答案 0 :(得分:0)

谷歌可以很容易地告诉你这是怎么做的,但因为我在这里我会帮忙。

首先,了解WordPress Loop

打开single.php模板并粘贴以下内容:

<?php 
    if ( have_posts() ) {
        while ( have_posts() ) {
            the_post(); 

            // Post Image
            the_post_thumbnail();

            // Post Date
            the_date();

            // The Post Content
            the_content();

        } // end while
    } // end if
?>

然后阅读所用的功能:

the_post_thumbnail()

the_date()

the_content()