How to remove
from feeds
If your feeds contain
tag and you want to remove them then you need to add the following code to your child theme's function.php or to a site specific plugin.
add_filter( 'feedzy_summary_output', 'feedzy_summary_output', 10, 4 );
function feedzy_summary_output( $contentSummary, $newLink, $feedURL, $item ) {
return html_entity_decode($contentSummary);
}