Preg 替换 WordPress 标签
我正在我自己的网站上显示 WordPress 内容。
然而内容有这样的东西:
[caption id="attachment_367"align="aligncenter" width="432" title="Version 2010!!"]
我基本上想剥离里面的任何东西[] 和 [] 本身。
帮助非常感谢!
I'm displaying wordpress content on my own site.
However the content has such things as:
[caption id="attachment_367" align="aligncenter" width="432" caption="Version 2010!!"]
I would basically like to strip anything thats inside [] and the [] themselves.
Help greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要的正则表达式是
/\[.*?\]/
The regular expression you want is
/\[.*?\]/
因此,像
[caption id="attachment_367"align="aligncenter" width="432" title="Version 2010!!"]
这样的代码看起来像 短代码给我。如果您希望它什么都不做,您可以将其添加到主题中的
functions.php
文件中(如果您的主题没有该文件,您需要创建它并将此代码包含在 <代码> 和?>
:So code like
[caption id="attachment_367" align="aligncenter" width="432" caption="Version 2010!!"]
looks like a shortcode to me.If you want it to do nothing, you could add this to the
functions.php
file in your theme (if your theme does not have that file, you would need to create it and enclose this code inside<?php
and?>
: