【发布时间】:2013-11-09 13:42:22
【问题描述】:
我正在尝试获取最近的帖子,仅在当前帖子的类别中,同时排除当前帖子,但我无法使其工作:
$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 );
它只是一遍又一遍地显示当前帖子。
【问题讨论】:
-
您的代码一切正常。你想怎么输出这个?