【发布时间】:2013-11-23 22:05:18
【问题描述】:
我已经注册了一个自定义帖子类型,并在我的存档-myCPT.php 中找到了我想检索只是当前发布的帖子。 这是我的 archive-myCPT.php 中的相关 sn-p:
if( have_posts() ){
$x = 1;
while ( have_posts() ){
the_post();
if ( 0 === (int) $post->post_parent) {
get_template_part( 'inc/post-format/content-debate');
}
如何在这个循环中添加一个条件来检查当前发布的帖子并仅检索一篇(最新的)?这可能吗 ?如果是这样,我该怎么做?
【问题讨论】:
标签: php wordpress conditional