Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created December 16, 2016 05:19
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 kraftbj/1c97c7b49b7c54165591950e7a8136b3 to your computer and use it in GitHub Desktop.
Save kraftbj/1c97c7b49b7c54165591950e7a8136b3 to your computer and use it in GitHub Desktop.
<?php // Remove this in an existing functions.php file
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