WordPress数据库搜索和替换html并保留内容

np8igboo  于 2022-12-03  发布在  WordPress
关注(0)|答案(1)|浏览(174)

我有一个问题。一个旧的插件在我所有的700个WordPress博客帖子中创建了很多不必要的标签。
目前每个h2-tag的html看起来像这样:

<h2><a class="chartbeat-section" target="_blank" rel="nofollow noopener" name="name"></a>title</h2>

结果应该是公正的:

<h2>title</h2>

有没有可能用一些sql查询去掉每个h2标记中的a标记?
先谢谢你。

jei2mxaa

jei2mxaa1#

这个可以给予你一点帮助

UPDATE wp_posts --check your database preffix wp_
SET 
    post_content = REPLACE (post_content, '<a class="chartbeat-section"... all the string', '') 
WHERE post_content LIKE '%chartbeat-section%';

相关问题