【问题标题】:wordpress - post_tags not outputting tagswordpress - post_tags 不输出标签
【发布时间】:2011-06-22 21:59:25
【问题描述】:

我正在尝试使用 post_tags 引用来获取与帖子关联的标签并将其用作 div 的类。我似乎无法让它工作......有什么建议吗?

<div id="workarchives_items">
            <?php
                 global $post;
                 $myposts = get_posts('numberposts=100&offset=news&category_name=portfolio');
                 foreach($myposts as $post) :
                   setup_postdata($post);
            ?>
            <div class="workitem <?php $posttags = get_the_tags(); ?> ">
                 <div class="workitem_photo"><?php the_post_thumbnail('150,200'); ?></div>
                 <div class="workitem_title"><?php the_title();?></div>
                 <div class="workitem_description"><?php the_excerpt(); ?></div>
                 <a class="workitem_projectdetails" href="<?php the_permalink(); ?>" style="display:none;">Project Details</a>
            </div>
            <?php endforeach; ?>
        </div>

我用过这个:

<?php
$posttags = get_the_tags();
$count=0;
if ($posttags) {
  foreach($posttags as $tag) {
    $count++;
    if (1 == $count) {
      echo $tag->name . ' ';
    }
  }
}
?>

但它只显示第一个标签,我如何修改它以显示它们。

【问题讨论】:

    标签: wordpress wordpress-theming


    【解决方案1】:

    尝试去掉这一行(以及等效的右花括号):

    if (1 == $count) {

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-01-17
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多