Skip to content

Instantly share code, notes, and snippets.

@davoraltman
Created July 17, 2017 07:55
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 davoraltman/33efec23e440144e6ba664d279bf29c0 to your computer and use it in GitHub Desktop.
Save davoraltman/33efec23e440144e6ba664d279bf29c0 to your computer and use it in GitHub Desktop.
Sort Indeed jobs by date
add_filter( 'job_manager_indeed_get_jobs_args', 'custom_job_manager_indeed_get_jobs_args' );
function custom_job_manager_indeed_get_jobs_args( $args ) {
$args['sort'] = 'date';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment