
使用MAMP时如何修复“此站点无法提供安全连接”错误
apply_filters( 'the_category', get_cat_name( get_option( 'default_category' )
the_category是一个模板标签,显示分配给一个文章的类别的名称。它通常用于在文章元数据或文章内容本身中显示类别。
这个过滤器在wp-includes/category-template.php中有记录。
'<strong>' . apply_filters( 'the_category', get_cat_name( get_option( 'default_category' ) ), '', '' ) . '</strong>'