inovve

Remove Wordpress Content Formatting

May 31st, 2020
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. add_filter( 'the_content', 'clean_post_content' );
  2. function clean_post_content($content) {
  3.  
  4. // Remove inline styling
  5. $content = preg_replace('/(<[^>]+) style=".*?"/i', '$1', $content);
  6.  
  7. // Remove font tag
  8. $content = preg_replace('/<font[^>]+>/', '', $content);
  9.  
  10. // Remove empty tags
  11. $post_cleaners = array('<p></p>' => '', '<p> </p>' => '', '<p>&nbsp;</p>' => '', '<span></span>' => '', '<span> </span>' => '', '<span>&nbsp;</span>' => '', '<span>' => '', '</span>' => '', '<font>' => '', '</font>' => '');
  12. $content = strtr($content, $post_cleaners);
  13.  
  14. return $content;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment