Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created March 13, 2014 16:29
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 mikejolley/9531799 to your computer and use it in GitHub Desktop.
Save mikejolley/9531799 to your computer and use it in GitHub Desktop.
Show more jobs in the feeds
add_filter( 'job_feed_args', 'custom_job_feed_args' );
function custom_job_feed_args( $args ) {
$args['posts_per_page'] = 20;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment