说明
该标签返回用户在文章>分类目录中对当前分类目录所填写的说明信息。
用法
<?php echo category_description( $category ); ?>
参数
$category
(整数)被返回说明信息的分类目录的数值型ID。若用户未指定分类目录,默认为当前分类目录。
示例
默认用法
下面这个例子通过响应标签所返回的值,根据所给的分类目录ID显示该分类目录的说明信息。如果用户未在分类目录页面上指定分类目录,则返回当前分类目录的说明信息。
<div><?php echo category_description(3); ?></div>
返回结果
WordPress is a favorite blogging tool of mine and I share tips and tricks for using WordPress here.
注意:若分类目录无相关说明信息,category_description返回一个br标签。
使用分类目录别名
根据分类目录别名显示该分类目录的说明信息
<?php echo category_description(get_category_by_slug('category-slug')->term_id); ?>
使用分类目录标题
<div><strong><?php single_cat_title('Currently browsing'); ?> </strong>: <?php echo category_description(); ?></div>
返回结果
Currently browsing WordPress: WordPress is a favorite blogging tool of mine and I share tips and tricks for using WordPress here.
分类:中文手册