-1

我正在写一篇关于足球的文章,其中包含诸如 FIFA、Football 等字样。同样,我也会添加 FIFA、Football 标签。

完成后,我将发布文章。在帖子的前端,我想看到像 FIFA 和 Football 这样的词与 domain.com/tag/fifa/ 和 domain.com/tag/football/ 这样的链接链接。

这怎么可能 ?有没有插件?

4

1 回答 1

0

使用标签创建页面以查找相关帖子。

<?php
$tag = single_tag_title('', false);
echo '<h2>Tag: '.$tag.'</h2>';

$args = array(
            'taxonomy' => $tag,
            'terms' => $tag,
);
$postslist = get_posts( $args );?>

<?php foreach( $postslist as $post ) :  setup_postdata($post); ?>
<div class="clear"></div>
      <span class="timestamp"><?php echo mysql2date('j M Y', $post->post_date) ;?></span></h2>
      <p class="about"><?php the_title(); ?></p>
      <?php the_content(); ?>
</div>
<?php endforeach;?>

这是 Mihai Iorga 在Get posts all posts by Tag / URL Wordpress上写的

于 2013-09-25T06:58:57.620 回答