mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
4 lines
234 B
Text
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
|
|
}
|