• Hi, I use this plugin on my blog to implement a scrolling effect for footnotes. It’s nice. However, I noticed that the anchor code like [ps2id id=’1′ target=”/] appears in the RSS feed content. Is there a way around this?

Viewing 1 replies (of 1 total)
  • Plugin Author malihu

    (@malihu)

    Hi,

    Can you try adding the following code to your functions.php and let me know if it works?

    function remove_sc_feed($content){
        remove_shortcode('ps2id');
        return $content;
    }
    add_filter('the_content_feed', 'remove_sc_feed');
Viewing 1 replies (of 1 total)
  • The topic ‘Anchor code appears in RSS feed content’ is closed to new replies.