Advertisement
xhark

Untitled

Apr 7th, 2020
561
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.33 KB | None | 0 0
  1. # suppression du plugin "niceweb2css" de https://www.spawnrider.net/2007/05/11/niceweb2css/
  2.  
  3. # [1] Rechercher:
  4. SELECT * FROM wp_posts WHERE (post_content LIKE '%[nice_%');
  5.  
  6. # [2] Supprimer:
  7. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[nice_code]', '<pre>' );
  8. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[/nice_code]', '</pre>' );
  9. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[nice_info]', '' );
  10. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[/nice_info]', '' );
  11. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[nice_alert]', '' );
  12. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[/nice_alert]', '' );
  13. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[nice_warning]', '' );
  14. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[/nice_warning]', '' );
  15. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[nice_sticky]', '' );
  16. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[/nice_sticky]', '' );
  17. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[nice_feed]', '' );
  18. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[/nice_feed]', '' );
  19. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[nice_download]', '' );
  20. UPDATE wp_posts SET post_content = REPLACE ( post_content, '[/nice_download]', '' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement