我似乎无法显示子类别列表的描述。到目前为止我有这个
<?php
$subcategories = get_categories('&child_of=5&hide_empty');
foreach ($subcategories as $subcategory) {
echo '<div style="position:relative;float:left;width:100%;margin:0 0 20px 0;border-bottom:1px dashed #cdcdcd;padding:0 0 20px 0">';
echo sprintf('
<a class="newstitle" href="%s" style="margin:0">%s</a>', get_category_link($subcategory->term_id), apply_filters('get_term', $subcategory->name));
echo '<br /><br />';
echo '</div>';
}
?>
这列出了带有正确链接的子类别的标题,但我似乎无法在两个换行符下显示描述。
谢谢