0

我有一个wordpress,我想用一个php LOOP来循环我的帖子,这样我就可以得到我所有的帖子,问题是我只想要帖子的标题、内容和日期......

<?php 
     while ( have_posts() ) : the_post(); 
         get_template_part( 'content', get_post_format() ); 
         echo "<br/><br/>";
     endwhile; 
?>

这是循环的通用代码,我尝试在get_post_format()函数上进行搜索,所以我只能得到我需要的东西,但没有人能帮忙吗?

4

3 回答 3

1

在循环中使用the_title()the_date()和。the_content()

the_title(); //displays post title
the_content(); //displays post content
the_date(); //displays post date
于 2013-09-06T16:05:01.280 回答
1

the_title(),the_content(),the_date()循环中的简单调用

<?php 
     while ( have_posts() ) : the_post(); 
         the_title();
         the_content();
         the_date();
         the_time('F jS, Y');
     endwhile; 
?>

The_Loop_in_Action

于 2013-09-06T16:06:11.050 回答
0

对于普通帖子get_post_format返回 boolean FALSEget_template_part基本上将它的字符串参数与“-”连接起来,并包含带有结果名称的模板。如果get_post_format()是,FALSE那么它将包括content.php. 我将替换get_post_format()为自定义字符串并创建content-something.php为 的副本content.php,并以您需要的方式对其进行编辑。

于 2013-09-06T16:05:14.040 回答