Support

Account

Home Forums General Issues Removing Paragraph Tags Reply To: Removing Paragraph Tags

  • Hi Elliot, sorry I’m a bit hopeless when it comes to this stuff… I tried

        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('the_content', 'remove_empty_p', 20, 1);
    function remove_empty_p($content){
    $content = force_balance_tags($content);
    return preg_replace('#<p>\s*+(<br\s*/*>)?\s*</p>#i', '', $content);
    }

    but it didn’t work, is the $content part supposed to be different?

    Thanks for your help,

    Belinda