Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created January 31, 2015 17:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikejolley/42b3ab3667c1bb9f00af to your computer and use it in GitHub Desktop.
Save mikejolley/42b3ab3667c1bb9f00af to your computer and use it in GitHub Desktop.
Applications - Remove a status
add_filter( 'job_application_statuses', 'add_new_job_application_status' );
function add_new_job_application_status( $statuses ) {
unset( $statuses['offer'] ); // Other statuses include new, hired, archived and interviewed
return $statuses;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment