Advertisement
sgaffney

remove p tags on images

Dec 20th, 2011
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. /*---------------------------------------------------------------------------------*/
  2. /* Remove <p> tags on images in content area
  3. /*---------------------------------------------------------------------------------*/
  4.  
  5. function tumble_filter_ptags_on_images($content){
  6.     return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content);
  7. }
  8.  
  9. add_filter('the_content', 'tumble_filter_ptags_on_images');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement