标签: php wordpress tags
这是一个wordpress标签数组。
每个单词后都有一个逗号。
如何从数组的最后一个单词中轻松删除逗号?
<?php $posttags = get_the_tags(); if ($posttags) { foreach($posttags as $tag) { echo $tag->name . ', '; } } ?>