在WordPress中按标签动态显示帖子

时间:2018-07-11 作者:Mina

如何显示与随机标记相关的帖子?当我单击标记并定向到标记时。php页面我想显示所有与之前点击的标签相关的帖子。我见过很多这样的例子:

<?php $args = array(
    \'numberposts\' => 3,
    \'post_status\' => \'publish\',
    \'tag\' => \'travel\' //how to give a dynamic value
);
但我希望“tag”被动态地分配给我单击的任何标记。

1 个回复
最合适的回答,由SO网友:Jacob Peattie 整理而成

标签。php模板根本不应该对其帖子使用自定义查询。访问标记的链接时,主查询将自动填充带有该标记的帖子。在用于输出主查询的模板中the standard loop.

<?php if ( have_posts() ) : ?>
    <?php while ( have_posts() ) : the_post(); ?>
        ... Display post content
    <?php endwhile; ?>
<?php endif; ?>

结束

相关推荐

No duplicate tags by category

我有脚本显示类别中的列表标签,效果很好。<ul class=\"inline-list\"> <?php query_posts(\'category_name=lain-lain\'); if (have_posts()) : while (have_posts()) : the_post(); if( get_the_tag_