Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created January 13, 2015 00:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tripflex/878b4af974731e700b55 to your computer and use it in GitHub Desktop.
Save tripflex/878b4af974731e700b55 to your computer and use it in GitHub Desktop.
add this code to your theme's functions.php file
// Add your own function to filter the fields
add_filter( 'submit_resume_form_fields', 'custom_submit_resume_form_fields' );
// This is your function which takes the fields, modifies them, and returns them
// You can see the fields which can be changed here: https://github.com/mikejolley/WP-Job-Manager/blob/master/includes/forms/class-wp-job-manager-form-submit-job.php
function custom_submit_resume_form_fields( $fields ) {
// Here we target one of the job fields (job_title) and change it's label
$fields['resume_fields']['candidate_experience']['employer']['label'] = "Organization/Employer";
$fields['resume_fields']['candidate_experience']['job_title']['label'] = "Role/Job Title";
// And return the modified fields
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment