Preg 替换 WordPress 标签

发布于 2024-09-05 04:17:16 字数 209 浏览 6 评论 0原文

我正在我自己的网站上显示 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生活了然无味 2024-09-12 04:17:16

您想要的正则表达式是 /\[.*?\]/

<?php
$old_content = 'Hello [caption id="attachment_367" align="aligncenter" width="432" caption="Version 2010!!"] World!';
$new_content = preg_replace('/\[.*?\]/', '', $old_content);
echo $new_content; // result: "Hello World!"
?>

The regular expression you want is /\[.*?\]/

<?php
$old_content = 'Hello [caption id="attachment_367" align="aligncenter" width="432" caption="Version 2010!!"] World!';
$new_content = preg_replace('/\[.*?\]/', '', $old_content);
echo $new_content; // result: "Hello World!"
?>
娇柔作态 2024-09-12 04:17:16

因此,像 [caption id="attachment_367"align="aligncenter" width="432" title="Version 2010!!"] 这样的代码看起来像 短代码给我。

如果您希望它什么都不做,您可以将其添加到主题中的 functions.php 文件中(如果您的主题没有该文件,您需要创建它并将此代码包含在 <代码> 和 ?>:

function do_nothing_caption() {
  return '';
}
add_shortcode('caption', 'do_nothing_caption');

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 ?>:

function do_nothing_caption() {
  return '';
}
add_shortcode('caption', 'do_nothing_caption');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文