Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created March 9, 2014 14:50
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 mikejolley/61d2b90a12a776848eca to your computer and use it in GitHub Desktop.
Save mikejolley/61d2b90a12a776848eca to your computer and use it in GitHub Desktop.
// Add your own function to filter the fields
add_filter( 'resume_manager_resume_fields', 'custom_resume_manager_resume_fields' );
// This is your function which takes the fields, modifies them, and returns them
function custom_resume_manager_resume_fields( $fields ) {
// Here we target one of the job fields (location) and change it's placeholder
$fields['_candidate_location']['placeholder'] = "Custom placeholder";
// 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