需要从已发布的单个帖子页面中删除特定标签

时间:2020-04-03 作者:SK21

单个帖子在我的网站上的内容后显示一个或多个标签。我需要删除一个特定的标签,使其从页面中隐藏。实际上,我已经重定向了一个指向此的链接,因此无法删除。我在google上搜索了一下,但找不到任何函数,因为到处都有从云中排除标签的代码。

remove a particular tag from published single post pages

1 个回复
SO网友:SK21

谢谢你的回复,莱曼克斯。显示标签的单页代码如下(swift是主题名称)-

    <?php if (has_tag()): ?>
        <div class="tags">
            <?php echo __(\'Tagged with\', \'swift\') . \'&nbsp;\'; ?>
            <h6>
                <?php the_tags(\'\', \' \', \' \'); ?>
            </h6>
        </div>