I added Adsense to my content via shortcodes. But Adsense codes appears in RSS too. How can I hide shortcodes from RSS Feed and show only for in posts ?
I am using sahifa wordpress theme.
I added Adsense to my content via shortcodes. But Adsense codes appears in RSS too. How can I hide shortcodes from RSS Feed and show only for in posts ?
I am using sahifa wordpress theme.
You must be logged in to post a comment.
You will need to alter how the RSS is output.
All the RSS styling files are located in the
wp-includes
folder and are titled as follows:Then within these files, you need to find where it calls the function
the_excerpt_rss()
. This calls out the content in excerpt format.You will need to enclose this in a function called
strip_shortcodes()
.As an example from
feed-atom.php
line 70:Hope this helps