0

我正在尝试将 wordpress 标签(和其他输入)转换为 html 类。首先我查询帖子,将它们设置在一个while循环中,在这个while循环中我将标签转换为有用的类。我现在有这个:

 <?php while ($query->have_posts()) : $query->the_post(); 


    $posttags = get_the_tags();
    if ($posttags) {
      foreach($posttags as $tag) {
        $thetags =  $tag->name . ''; 
        echo $the_tags;

        $thetags = strtolower($thetags);


        $thetags = str_replace(' ','-',$thetags);
        echo $thetags;


      }
   }
    ?>

    <!-- Loop posts -->         
    <li class="item <?php echo $thetags ?>" id="<?php the_ID(); ?>" data-permalink="<?php the_permalink(); ?>">

<?php endwhile; ?>

现在有什么问题:

第一个回显,像标签 1 标签 2 一样回显标签。第二个像 tag-1tag-2 一样回显它,这也不是我想要的,因为每个标签之间没有空格。因此只有最后一个标签显示在 html 类中,因为它不在 foreach 循环中。

我想要什么: 我想在 html 类中有所有相关的标签。所以最终结果必须是这样的:

<li class="item tag-1 tag-2 tag-4" id="32" data-permalink="thelink">

但是,如果我将列表项放在 foreach 循环中,我会<li>为每个标签获得一个项目。如何正确执行此操作?谢谢!

4

2 回答 2

1

改为使用数组,然后使用implode它。帮自己一个忙,并在您的while子句中使用括号(如果您更喜欢它的可读性 - 我知道在这种情况下我会这样做):

<?php
    while ($query->have_posts()) {
        $query->the_post(); 

        $posttags = get_the_tags();

        $tags = array(); //initiate it
        if ($posttags) {
            foreach($posttags as $tag) {
                $tags[] = str_replace(' ','-', strtolower($tag->name)); //Push it to the array
            }
        }
        ?>
            <li class="item<?php echo (!empty($tags) ? ' ' . implode(' ', $tags) : '') ?>" id="<?php the_ID(); ?>" data-permalink="<?php the_permalink(); ?>">
        <?php
    }
?>
于 2013-09-25T13:03:37.077 回答
1

我会做这样的事情(使用数组而不是那个,然后使用 implode 来获取它,它之间有空格:)

<?php while ($query->have_posts()) : $query->the_post(); 

$tags = array(); // a array for the tags :)
$posttags = get_the_tags();
if (!empty($posttags)) {
  foreach($posttags as $tag) {
    $thetags =  $tag->name . ''; 
    echo $the_tags;

    $thetags = strtolower($thetags);


    $thetags = str_replace(' ','-',$thetags);
    $tags[] = $thetags;

    echo $thetags;


  }
}
?>

<!-- Loop posts -->      
<li class="item <?= implode(" ", $tags) ?>" id="<?php the_ID(); ?>" data-permalink="<?php the_permalink(); ?>">
于 2013-09-25T13:09:44.493 回答