我正在使用哪個代碼返回匹配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查看了幾個不同的選項,但是我有點迷惑,似乎無法按字母順序對網站前端的結果進行排序。
任何人都可以在我的代碼中識別我能夠讓我的結果具有排序順序嗎?
感謝
+1一個很好的接...有更有用的答案 –
我不知道WordPress允許寫你自己的查詢。這絕對比我的解決方案好。 –
真棒!非常感謝 – Redwall