我正在尝试在我的单个帖子视图下方显示 3 个帖子(我设置了自定义帖子类型,因此希望此查询适用于所有单个帖子页面,无论帖子类型如何)。
但是,使用下面的代码,我没有显示任何相关的帖子。当我删除时,.'&exclude=' . $current
我会显示 3 个相关帖子,但当前帖子是其中之一。因此,为什么我添加了“排除”,但我不明白为什么当我添加它时它没有显示任何内容。
任何帮助将不胜感激。谢谢
<?php
$backup = $post;
$current = $post->ID; //current page ID
global $post;
$thisPost = get_post_type(); //current custom post
$myposts = get_posts('numberposts=3&order=DESC&orderby=ID&post_type=' . $thisPost .
'&exclude=' . $current);
$check = count($myposts);
if ($check > 1 ) { ?>
<h1 id="recent">Related</h1>
<div id="related" class="group">
<ul class="group">
<?php
foreach($myposts as $post) :
setup_postdata($post);
?>
<li>
<a href="<?php the_permalink() ?>" title="<?php the_title() ?>" rel="bookmark">
<article>
<h1 class="entry-title"><?php the_title() ?></h1>
<div class="name-date"><?php the_time('F j, Y'); ?></div>
<div class="theExcerpt"><?php the_excerpt(); ?></div>
</article>
</a>
</li>
<?php endforeach; ?>
</ul>
<?php
$post = $backup;
wp_reset_query();
?>
</div><!-- #related -->
<?php } ?>