• Resolved robin_dean

    (@robin_dean)


    The WordPress syndication settings apply to both my site AND the generated podcast feed. I don’t know what a normal count for posts in the syndication should be but for my PODCAST, I’d like for it to be ALL.

    I’ve currently set it to 9999 … which makes my normal site feed enormous.

    Any suggestions how I might use function.php to divide the two, thereby making the podcast syndication post count independent of the site?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • ClosetDevlopr

    (@seriouspodcaster)

    Hi there

    Thank you for getting in touch with us.

    You can add in a filter, using the below code to change the number of episodes that show up in your podcast feed:

    add_filter( 'ssp_feed_number_of_posts', 'custom_ssp_number_of_posts_feed' );
    
    function custom_ssp_number_of_posts_feed( $current ){
       $current = 20; //New number of episodes to show up
       return $current;
    }

    I hope this helps?

    Thread Starter robin_dean

    (@robin_dean)

    It absolutely did!

    THANK YOU!

    ClosetDevlopr

    (@seriouspodcaster)

    Hi Robin

    So glad to hear! Just shout if there’s anything else we can assist you with ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Feed Count’ is closed to new replies.