我想在主题中显示标签,它应该链接到corespondent标签和max标签4。
我创建下面的代码,但不确定该代码中是否具有正确的转义符。
<p class="the-tags">
<?php
$posttags = get_the_tags();
$count=0;
if ($posttags) {
foreach($posttags as $tag) {
$count++;
echo '<a href="'.get_tag_link($tag->term_id).'">'.$tag->name.'</a> ';
if( $count >4 ) break;
}
}
?>
</p>