[prisna-google-website-translator]
wp 调取指定栏目的二级分类
<?php
                            $a=get_category_root_id(1);
                            $args=array(
                            'orderby'    => 'id',
                            'hide_empty' => "0",
                            'child_of' => $a,//可以换为:'child_of' => '1', // 这个参数是什么,还在确认。
                            );
                            $categories=get_categories($args);
                            foreach($categories as $category) {
                        ?>
                        <a href="<?php echo get_category_link( $category->term_id )  ?> ">
                           <?php echo get_the_category_by_ID( $category->term_id ) ?>
                        </a>
                        <?php }?>   
暂无评论

发送评论 编辑评论


				
上一篇
下一篇