我正在尝试获取最近的帖子,仅在当前帖子的类别中,同时排除当前帖子,但我无法让它工作:
$curr_cat = get_the_category();
$args = array( 'numberposts' => '10', 'post_status' => 'publish', 'category' => $curr_cat['0']->cat_ID, 'exclude' => $post->ID );
$recent_posts = wp_get_recent_posts( $args );
它只是一遍又一遍地显示当前的帖子。