Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlashbrooke/27272553d1f9b968d9e4 to your computer and use it in GitHub Desktop.
Save hlashbrooke/27272553d1f9b968d9e4 to your computer and use it in GitHub Desktop.
Seriously Simple Podcasting: Modify number of episodes that appear in podcast RSS feed
add_filter( 'ssp_feed_number_of_posts', 'ssp_modify_number_of_posts_in_feed' );
function ssp_modify_number_of_posts_in_feed ( $n ) {
return 25; // Where 25 is the number of episodes that you would like to include in your RSS feed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment