如何用noindex标签包围文本块?

时间:2018-03-26 19:20:12

标签: wordpress tags shortcode

我想使用短代码覆盖带有noindex标签的文本块:

enter image description here

这里我添加了noindex短代码:

enter image description here

但是当我启动该功能时,文本块就会消失:

enter image description here

我的功能和结果:

enter image description here

1 个答案:

答案 0 :(得分:0)

此代码应该有效。 将它添加到functions.php文件而不是您编写的文件中:

function noindex($content = null) 
{
return '<noindex>'.$content.'</noindex>';
}
add_shortcode("noindex", "noindex");