如何显示类别描述


How can i show the categories description?

我正在一个wordpress网站上工作,我正在使用这个主题:Ermark Adora

我希望能够为我的类别添加描述。这是代码所在的函数文件上的代码。这是整个函数页面(接近页面末尾)。

<li class="categ">
<h3> - '.$categ->name.' - </h3>';
if ($products_full=='true') {
$src['full_categ'] .= '<a href="#" class="less-products">'.__('view all','adora').'</a>';
$src['full_categ'] .= '</li>'

我需要在 oder 中添加什么代码来显示类别的描述?

在问这样的问题之前,请谷歌一下。答案在WP法典中:

http://codex.wordpress.org/Function_Reference/category_description

echo category_description( $category_id );

我找到了答案:<h3> - '.$categ->name.' -</h3><p> '.$categ->description.' </p>';