0
我正在建立一個Wordpress組合與Quicksand過濾功能。Portfiolio類別過濾器WordPress的
我需要幫助的部分是我有大約20個類別,並希望將它們分成3行,每行都有自己的標題 - 聲音,設計和視頻。
這裏是我使用的代碼:
<?php
$terms = get_terms("tagportfolio");
$count = count($terms);
echo '<ul id="portfolio-filter">';
echo '<li><a href="#all" title="">All</a></li>';
if ($count > 0){
foreach ($terms as $term) {
$termname = strtolower($term->name);
$termname = str_replace(' ', '-', $termname);
echo '<li><a href="#'.$termname.'" title="" rel="'.$termname.'">'.$term->name.'</a></li>';
}
}
echo "</ul>";
?>
您必須添加一些更多的信息如何將類別鏈接到子類別 – Mark