在Wordpress帖子列表上显示日期旁边的标签

时间:2014-04-04 20:01:35

标签: wordpress

如何在Wordpress中的帖子日期旁边显示标记?您可以为帖子添加标签,但如何在帖子旁边显示它们?

我有以下代码来提取媒体报道类别中的所有帖子:

<div class="press_item">
                <?php $posts = get_posts('category_name=media-coverage&numberposts=300'); foreach($posts as $post) { ?>
                <li><a href="<?php the_permalink() ?>" target="_parent"><?php the_title(); ?></a></li>
                <p>Date posted: <?php the_time('F j, Y'); ?></p><hr>
                <?php } ?>
</div>

1 个答案:

答案 0 :(得分:0)

循环内部:

<?php the_tags( $before, $sep, $after ); ?> 

如果你在循环之外:

<?php
$posttags = get_the_tags($post->ID);
if ($posttags) {
  foreach($posttags as $tag) {
    echo $tag->name . ' '; 
  }
}
?>