您必须使用自己的自定义函数,\\u标记()不允许您这样做。您可以使用get\\u the\\u标记创建这样的函数,并根据需要格式化html:
function hashtags() {
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo \'<a href="\' . get_tag_link($tag->term_id) . \'">#\' . $tag->name . \'</a> \';
}
}
}