从数据库批量删除或替换WordPress文章内容
删除命令:
UPDATE wp_posts SET post_content = REPLACE( post_content, '要删除的内容', '' );
替换命令:
UPDATE wp_posts SET post_content = REPLACE( post_content, '原来的内容', '要替换的内容' );
从数据库批量删除或替换WordPress文章内容
删除命令:
UPDATE wp_posts SET post_content = REPLACE( post_content, '要删除的内容', '' );
替换命令:
UPDATE wp_posts SET post_content = REPLACE( post_content, '原来的内容', '要替换的内容' );