我有一个问题。一个旧的插件在我所有的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标记?先谢谢你。
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%';
1条答案
按热度按时间jei2mxaa1#
这个可以给予你一点帮助