1

我正在尝试使用自定义标签在 wp_posts 表的 post_content 列中包装一段文本。现在,我可以肯定的是,我需要应用它的所有文本块(数百个)如下所示:

blah blah blah...
<!--more-->
<script type="text/javascript">...</script>

我需要它看起来像这样:

blah blah blah...
[custom_tag]
<script type="text/javascript">...</script>
[/custom_tag]

可以在 mySQL 中以某种方式使用 REPLACE 命令或除了替换之外的某种连接来完成吗?有任何想法吗?

4

1 回答 1

1

试试这个

concat(replace(s,'<!--more-->','[custom_tag]'),'[/custom_tag]')

或者如果您需要[custom_tag]<script

concat(replace(s,'<script','[custom_tag] <script'),'[/custom_tag]')
于 2012-08-27T07:58:58.707 回答