外贸营销

wordpress自定义分类获取子分类
2019.09.06 外贸营销

我现在有一个需求就是新建一个页面,显示当前自定义文章父分类的置顶文章,我们的做法就是先获取当前父分类的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"),));?>
上一篇下一篇
标签

有问
必答