我正在使用哪个代码返回匹配 2 个值的分类法。
一切正常,但我不知道如何排序我的结果。现在它们以某种固定顺序显示,可能日期不确定。我试图让它们按字母顺序显示(按名称)..
我的 php 模板中的代码粘贴在这里http://pastie.org/5083124
我说的数组是这个
<?php
foreach ( $all_terms as $all_term) {
//print_r($all_terms);
$tax_test = get_option('woo_categories_panel_taxonomies_'.$all_term->taxonomy);
$post_images = array();
$posts_aray = array();
$parent_id = $all_term->term_taxonomy_id;
$term_name = $all_term->name;
$term_parent = $all_term->parent;
$term_slug = $all_term->slug;
$term_id = $all_term->term_id;
$term_link = get_term_link( $all_term, $all_term->taxonomy );
$counter_value = $all_term->count;
?>
<div class="childListings">
<div class="block">
<a href="<?php echo $term_link; ?>">
<?php
$block_counter++;
?>
</a>
<h2><a href="<?php echo $term_link; ?>"><?php echo $term_name ?> <br/><span>(<?php echo $counter_value; ?> Solicitors)</span></a></h2>
</div><!-- /.block -->
</div><!-- /.child Listings-->
<?php
if ( $block_counter % 6 == 0 ) {
?>
<div class="fix"></div>
<?php
} // End IF Statement
// End IF Statement
?>
<?php
} // End For Loop
?>
我已经使用 $args 和 ksort 查看了一些不同的选项,但我有点迷失了,似乎无法在网站的前端得到我的结果以按字母顺序排序。
任何人都可以在我的代码中确定我如何能够让我的结果具有排序顺序吗?
谢谢