Code-Snippets-Functions/Execute a function on a child site/Seriously Simple Podcasting/modify-number-episodes-in-rss-feed.txt

4 lines
234 B
Text

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
}