在管理中有一个描述文本区域,用于向每个类别添加一些额外的文本。在模板文件中,您可以通过category_description($cat_id)
作用
或者,您也可以使用is_category($cat_id)
函数检查是否显示某个类别,然后在其中执行任何操作。
if (is_category(5))
{
// Description for the current category
echo category_description();
// Add some extra content
echo \'This is category number five, yay!\';
}
请注意,您可以使用类别
template files 以及:
category-$slug.php
> category-$id.php
> category.php