我需要从所有帖子中删除一些内容。
每篇帖子都以这一行开头:
<p style="text-align: center;"><img src="http://i.imgur.com/picture.jpg" alt="" /></p>
所以我想立刻从我的数据库中的所有帖子中删除这一行。
我知道我可以在phpmyadmin中编辑它,但我不知道怎么做。
以下是每个帖子的外观:
<p style="text-align: center;"><img src="http://i.imgur.com/picture.jpg" alt="" /></p>
<p style="text-align: center;">here is some text.</p>
所以基本上我想大规模删除这条线:
<p style="text-align: center;"><img src="http://i.imgur.com/picture.jpg" alt="" /></p>
从网站上的每个帖子。
写完剧本后,我完全是个新手。
SO网友:Wali Hassan
要使用phpMyAdmin,请执行以下步骤:
Login to phpMyAdmin panel and select your WordPress database.
Click on the SQL tab which will bring you to a page with a SQL query box.
一旦看到SQL查询框,如下图所示,就可以在那里运行SQL查询。
UPDATE wp_posts SET post_content = REPLACE (post_content, \'<p style="text-align: center;"><img src="http://i.imgur.com/picture.jpg" alt="" /></p>\', \'\');