X

How to removing paragraph tags from WordPress the_excerpt()

You can use get_the_excerpt() of WordPress and this will return the the excerpt for you without the paragraph tags. try it a s below with in loop.

 
<?php 
	echo(get_the_excerpt()); 
?>