在WordPress中显示搜索词(标记/存档)

时间:2015-05-20 17:07:22

标签: php html wordpress loops

我目前正在WordPress中使用侧边栏,并显示'存档'和#39;热门标签'在侧栏。

例如 - 存档代码

  <div class="populartags">
    <?php
    $tags = get_tags();
    $html = '<div class="post_tags">';
    foreach ( $tags as $tag ) {
      $tag_link = get_tag_link( $tag->term_id );

      $html .= "<a style='color:#333;' href='{$tag_link}' title='{$tag->name} Tag' class='{$tag->slug}'>";
      $html .= "{$tag->name}</a>";
    }
    $html .= '</div>';
    echo $html;
    ?>
  </div>

显示已在帖子上使用的所有标签。 我也有档案(日期) -

<?php wp_get_archives(); ?>

这些页面,转到archive.php,这很棒。 我要实现的目标是什么。是一行文字,上面写着

&#39;以下是(存档/标签)的帖子。&#39;

所以,如果我查看了2015年5月的帖子。它会说&#39;以下是2015年5月的帖子&#39;

有人有任何想法吗?

2 个答案:

答案 0 :(得分:0)

您需要修改archive.php

添加

<?php if( is_month() ) { ?> // Check if month based archive
    <?php echo 'Here are the posts for'; ?>
    <?php the_time('F Y'); 
} ?>

答案 1 :(得分:0)

这会显示日期,标签以及人们仍在寻找的结果数量:

    <?php echo 'Search Results'; ?>
    <?php echo 'Displaying ' . count($posts) . ' results for '; ?>
    <?php echo $tag ?>
    <?php if( is_month() ) { ?>
    <?php the_time('F Y'); 
  } ?>