当我在WordPress网站上发布文章时,此帖子中使用的所有标签都会显示在帖子内容下方。如何从WordPress帖子中隐藏标签?
答案 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/