Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Last active January 13, 2016 22:48
Show Gist options
  • Save kraftbj/673753d834e7b35d140b to your computer and use it in GitHub Desktop.
Save kraftbj/673753d834e7b35d140b to your computer and use it in GitHub Desktop.
Edit Application Statuses
add_filter( 'job_application_statuses', 'bk_change_app_status' );
function bk_change_app_status( $status ){
unset( $status['new'] ); // example of how to remove one of the built-in ones of new, interviewed, offer, hired, archived
$status['campus-visit'] = "Campus Visit"; // example of how to add a new one
$status['hired'] = "Appointed"; // example of how to "rename" an existing one if you don't want to impact existing ones.
return $status;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment