如何显示类别说明?

时间:2012-08-13 20:35:02

标签: php wordpress

我正在使用wordpress网站并使用此主题:Ermark Adora

我希望能够为我的类别添加说明。这是函数文件中代码所在的代码。 Here's the entire functions page (towards the end of the page)

<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中添加哪些代码才能显示类别的描述?

2 个答案:

答案 0 :(得分:0)

在问这样的问题之前请谷歌。答案在WP codex中:

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

echo category_description( $category_id );

答案 1 :(得分:0)

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