按标题后代获取类别 时间:2017-07-06 作者:tibewww 我通过以下方式显示我的帖子类别:<?php foreach (get_categories() as $cat) :?> <div class="post animation-element bounce-up cf" <?php post_class(); ?> id="post-<?php the_ID(); ?>"> <div class="row subject "> <div class="col-md-12 col-sm-12 col-xs-12 col-lg-12 "> <a href="<?php echo get_category_link($cat->term_id); ?>"> <img src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" /> </a> </div> </div> </div> 我的类别按标题升序以这种方式显示,但我希望按标题升序显示它们。 1 个回复 SO网友:Max Yudin 如果你能用get_categories() 在Codex中,您可以看到此函数支持参数。<?php $categories = get_categories( array( \'orderby\' => \'name\', // default value, can omit it \'order\' => \'DESC\' )); foreach($categories as $cat) { // your code goes here } 结束 文章导航