我是 wordpress 和 php 的新手,但我需要从最近的类别中获取最近的帖子。我尝试获取最近帖子的类别并将它们添加到具有四个类别元素的数组中。然后把这些类别的最后两个帖子拿出来。为此,我需要一点帮助。谢谢 !
问问题
85 次
1 回答
1
所以首先你会想要使用这样的东西来获取类别。
然后你会想要获取这些类别并创建一个新的 WP_Query 来过滤这些类别(可能使用category__in
.
所以像
$cat_array = array();
$args=array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 5
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post();
$cat_args=array('orderby' => 'none');
$cats = wp_get_post_terms( $post->ID , 'category', $cat_args);
foreach($cats as $cat) {
$cat_array[$cat->term_id] = $cat->term_id;
}
endwhile;
}
wp_reset_query();
$args = array(
'category__in' => $cats,
);
$query_cats = new WP_Query($args);
if ($query_cats->have_posts() ) {
while ($query_cats->have_posts()) : $query_cats->the_post();
//display your posts
endwhile;
}
请注意,上面的代码尚未经过测试,但应该相当接近。
于 2012-09-02T21:04:09.537 回答