Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created June 2, 2015 19:08
Show Gist options
  • Save mikejolley/6d2ac9fdd438763412a6 to your computer and use it in GitHub Desktop.
Save mikejolley/6d2ac9fdd438763412a6 to your computer and use it in GitHub Desktop.
Hide expired jobs on dashboard
add_filter( 'job_manager_get_dashboard_jobs_args', 'hide_expired_job_manager_get_dashboard_jobs_args' );
function hide_expired_job_manager_get_dashboard_jobs_args( $args ) {
$args['post_status'] = array( 'publish', 'pending' );
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment