Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End How to achieve two different excerpt layouts on one WordPress site? Re: How to achieve two different excerpt layouts on one WordPress site?

#137487
Alen
Participant

> Problem with this… WordpPress wraps all images with P tags!!!!

add_filter(‘the_content’, ‘filter_ptags_on_images’);

function filter_ptags_on_images($content){
return preg_replace(‘/

(s*)()(s*)

/iU’, ‘2’, $content);
}

That should do it.

> and in this particular case, it doesn’t

This is most likely because you are using excerpts plugin.