我有三个帖子,两个有标签eGuide,一个有标签Article。当我单击 时eGuide,我希望侧边栏显示其他 eGuide(最多 2 个)而不是其他任何内容。为此,我有以下查询:
global $post;
$args = array(
'post_type' => 'resources',
'category__in' => wp_get_post_categories($post->ID ),
'posts_per_page' => 3,
'post__not_in' => array($post->ID )
);
$relatedPosts = new WP_Query( $args );
但它也显示了article?我也试过:
'post__not_in' => array(get_the_ID() )
......仍然没有运气。