Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. UPDATE wp_posts
  2. SET post_content = REPLACE(post_content,
  3. substr(post_content,
  4. instr(post_content,'<div style="overflow:hidden;height:1px;">'),
  5. LOCATE('</div>',post_content,instr(post_content,'<div style="overflow:hidden;height:1px;">')+30)-instr(post_content,'<div style="overflow:hidden;height:1px;">')
  6. +6),
  7. '');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement