我想为此添加一个自定义 HTML 类或 HTML id:
<?php the_category(); ?>
根据WordPress:
<?php the_category( $separator, $parents, $post_id ); ?>
http://codex.wordpress.org/Function_Reference/the_category
我只需要一个 HTML id,所以我所做的是
<?php the_category('custom-category'); ?>
但它不起作用。请帮忙。