2012-08-13 121 views
-1

我正在使用這個主題的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中添加什麼代碼才能顯示類別的描述?

+0

[你嘗試過什麼(http://www.whathaveyoutried.com/)? – Matt 2012-08-13 20:37:02

+0

我試過'category_description($ category_id);'但我不知道如何編寫它才能工作。 – ChrisBedoya 2012-08-14 01:14:04

回答

0

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