我需要一个解决方案,使我能够在 wordpress 页面上的列表下方仅显示不包含数字的标签。
这是我的代码:
<?php
$tags_html = '';
foreach($tags as $single_tag)
{
$count++;
if (1 == $count)
{
$tags_html .= '<a href="'.get_term_link($single_tag, 'spot_tags').'">'.$single_tag->name.'</a>, ';
}
//// ADDS TO OUR MARKUP
}
//// TRIMS LAST COME
echo rtrim($tags_html, ', ');
?>
</span>
<?php }
?>
不应显示属于包含数字的帖子/列表的所有标签,不包含数字的标签可以显示在列表下方。
任何想法?