Last active
January 13, 2016 22:48
-
-
Save kraftbj/673753d834e7b35d140b to your computer and use it in GitHub Desktop.
Edit Application Statuses
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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