我试图从列表中排除当前查看的自定义帖子。我试过了exclude
但它仍然显示它。
这是我的密码single-works.php
:
<?php
$currentID = get_the_ID();
$recent = new WP_Query( \'post_type=works&exclude=\' . $currentID . \'&showposts=5\' );
while ($recent->have_posts()) : $recent->the_post();
?>
<li><?php the_title(); ?>
<?php endwhile; ?>
你知道我做错了什么吗?我该怎么做?