Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created March 28, 2016 22:40
Show Gist options
  • Save kraftbj/2225e6d1c011d3f3f1d8 to your computer and use it in GitHub Desktop.
Save kraftbj/2225e6d1c011d3f3f1d8 to your computer and use it in GitHub Desktop.
Add a custom application status
add_filter( 'job_application_statuses', 'bk_add_status');
function bk_add_status( $status ){
$status['investigation'] => 'Pending OPM Investigation';
return $status;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment