标签: wordpress tags shortcode
我想使用短代码覆盖带有noindex标签的文本块:
这里我添加了noindex短代码:
但是当我启动该功能时,文本块就会消失:
我的功能和结果:
答案 0 :(得分:0)
此代码应该有效。 将它添加到functions.php文件而不是您编写的文件中:
function noindex($content = null) { return '<noindex>'.$content.'</noindex>'; } add_shortcode("noindex", "noindex");