如何在wordpress帖子中隐藏文本

时间:2015-03-16 11:53:21

标签: wordpress

我希望在我的wordpress帖子上有标签,但我不想在帖子摘录后显示它们。我希望它隐藏标签不会影响谷歌搜索结果。

1 个答案:

答案 0 :(得分:0)

您需要使用名为strip_tags()

的PHP函数

举个例子:

<?php
    echo strip_tags(the_excerpt());
?>

Documentation