如何隐藏WordPress帖子中的标签?

时间:2019-02-06 18:33:51

标签: wordpress

当我在WordPress网站上发布文章时,此帖子中使用的所有标签都会显示在帖子内容下方。如何从WordPress帖子中隐藏标签?

1 个答案:

答案 0 :(得分:0)

连接到“ the_tags”过滤器并返回空字符串。尝试使用以下代码:

add_filter( 'the_tags', 'remove_the_tags', 10, 5);
function remove_the_tags( $tag_list, $before, $sep, $after, $id ) {
    $tag_list = '';
    return $tag_list;
}

参考: https://developer.wordpress.org/reference/hooks/the_tags/