Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Remove paragraph tags from images
#5
I managed to use a function borrowed from wordpress to remove p tags on the images. It doesn't solve the editor problem as such though - e.g if an image is floated and the text sits beside it in the editor it still wraps the image and text in a paragraph. Still looking for a better solution for the editor options.

Code:
/* Remove ptags from images */
function filter_ptags_on_images($content){
    return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content);
}

add_filter('content', 'filter_ptags_on_images');
Reply


Messages In This Thread
Remove paragraph tags from images - by kate - 2012-01-21, 02:08:50
RE: Remove paragraph tags from images - by Timbow - 2014-02-08, 22:25:16
RE: Remove paragraph tags from images - by Carlos - 2014-02-08, 23:00:21
RE: Remove paragraph tags from images - by Timbow - 2014-02-08, 23:18:01
Remove paragraph tags from images - by Ampersand - 2012-01-21, 04:05:05
Remove paragraph tags from images - by Connie - 2012-01-21, 04:36:13
Remove paragraph tags from images - by kate - 2012-01-21, 04:53:18
Remove paragraph tags from images - by kate - 2012-01-23, 23:08:24
Remove paragraph tags from images - by mvlcek - 2012-01-23, 23:42:48
Remove paragraph tags from images - by kate - 2012-01-24, 00:43:03
Remove paragraph tags from images - by Connie - 2012-01-24, 06:39:22
Remove paragraph tags from images - by kate - 2012-01-27, 01:37:44
Remove paragraph tags from images - by Connie - 2012-01-27, 02:49:14
Remove paragraph tags from images - by mvlcek - 2012-01-27, 03:27:33
Remove paragraph tags from images - by kate - 2012-01-27, 20:33:10
Remove paragraph tags from images - by WAXMASSIVE - 2012-02-20, 22:41:19



Users browsing this thread: 2 Guest(s)