Advertisement
Guest User

Untitled

a guest
Jan 10th, 2013
1,389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function cleanup_shortcode_fix($content) {
  2. $array = array (
  3. '<p>[' => '[',
  4. ']</p>' => ']',
  5. ']<br />' => ']',
  6. ']<br>' => ']'
  7. );
  8. $content = strtr($content, $array);
  9. return $content;
  10. }
  11. add_filter('the_content', 'cleanup_shortcode_fix');
  12.  
  13. $string=preg_replace_('/<p>s*</p>/', '', $string);
  14.  
  15. add_filter('the_content', 'cleanup_shortcode_fix', 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement