2013-12-03 71 views
0

這是我的第一個問題,我希望很多這個網站。我的朋友們談得很好。添加html文字到wp_list_categories

我有一個代碼分類列表在3列,但我想在每個類別之前添加單詞「Asesor」。

例子:

Asesor 1類 Asesor 2類

這是我的代碼:

<?php 
// Grab the categories - top level only (depth=1) 
$get_cats = wp_list_categories('echo=0&title_li=&depth=1&hide_empty=0&exclude=1,762,899,951'); 
// Split into array items 
$cat_array = explode('</li>',$get_cats); 
// Amount of categories (count of items in array) 
$results_total = count($cat_array); 
// How many categories to show per list (round up total divided by 3) 
$cats_per_list = ceil($results_total/3); 
// Counter number for tagging onto each list 
$list_number = 1; 
// Set the category result counter to zero 
$result_number = 0; 
?> 

<ul class="cat_col" id="cat-col-<?php echo $list_number; ?>"> 

<?php 
foreach($cat_array as $category) { 
    $result_number++; 

    if($result_number % $cats_per_list == 0) { 
     $list_number++; 
     echo $category.'</li> 
     </ul> 
     <ul class="cat_col" id="cat-col-'.$list_number.'">'; 
    } 
    else 
     echo $category.'</li>'; 
} 
?> 
</ul> 

我嘗試在一個行添加這一點,但不工作:

echo "Asesor" .$category.'</li>'; 

有人可以幫我嗎?真的感謝!

回答

1

我建議您改用 http://codex.wordpress.org/Function_Reference/get_categories。 默認情況下它將檢索對象數組,因此您可以循環並回顯您想要的內容

+0

我正在尋找建議頁面,但對我來說不可能。我知道css,html,illustrator,photoshop,但我正在學習php,jquery ......對不起。我使用這個網站是爲了更好的人或只有程序員。不管怎麼說,還是要謝謝你 – user3062867