Created
March 28, 2016 22:40
-
-
Save kraftbj/2225e6d1c011d3f3f1d8 to your computer and use it in GitHub Desktop.
Add a custom application status
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_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