最后更新时间为 2019年3月20日
我现在有一个需求就是新建一个页面,显示当前自定义文章父分类的置顶文章,我们的做法就是先获取当前父分类的ID,然后通过get_term_children函数去获取所属的子分类。
<?php
$cid = get_query_var("cat");
$termchildren = get_term_children( $cid, category );
query_posts(array(
"category__in" => $termchildren,
"post__in" => get_option("sticky_posts"),
)
);
?>