Skip to content

Instantly share code, notes, and snippets.

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 jonathanbossenger/86eb9748a5ee2308a7d3b2c91f6e7730 to your computer and use it in GitHub Desktop.
Save jonathanbossenger/86eb9748a5ee2308a7d3b2c91f6e7730 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'ssp_widget_series_episodes_args', 'custom_ssp_widget_series_episodes_args' );
function custom_ssp_widget_series_episodes_args( $arguments ) {
$arguments['posts_per_page'] = 10;
return $arguments;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment