Guest User

Untitled

a guest
Feb 18th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. add_filter( 'job_application_statuses', 'add_new_job_application_status' );
  2.  
  3. function add_new_job_application_status( $statuses ) {
  4. $statuses['example'] = _x( 'Example', 'job_application', 'wp-job-manager-
  5. applications' );
  6. return $statuses;
  7. }
Add Comment
Please, Sign In to add comment