Advertisement
Guest User

Untitled

a guest
Mar 9th, 2025
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.19 KB | Software | 0 0
  1. UPDATE wp_posts
  2. SET post_content = REPLACE(
  3.     REPLACE(
  4.         REPLACE(
  5.             post_content,
  6.             '<br>', ''
  7.         ),
  8.         '<br/>', ''
  9.     ),
  10.     '<br />', ''
  11. );
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement