标签: php html arrays wordpress tags
我需要在页面模板中显示特定用户使用的标签列表。这就是我到目前为止所做的:
<?php $tags = get_tags(array( 'hide_empty' => false, 'post_type' => 'offer', 'author'=> 2 )); echo '<ul>'; foreach ($tags as $tag) { echo '<li>' . $tag->name . '</li>'; } echo '</ul>'; ?>