Skip to content

Instantly share code, notes, and snippets.

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 jeremyescott/03cb08b2b6d8446c2de62586d45a8045 to your computer and use it in GitHub Desktop.
Save jeremyescott/03cb08b2b6d8446c2de62586d45a8045 to your computer and use it in GitHub Desktop.
Change Label or Add a Placeholder to Matador Application Fields
function matador_tutorial_application_fields( $fields ) {
$fields['firstName']['label'] = 'Label Name'; // changes the label
$fields['firstName']['attributes']['placeholder'] = 'Placeholder Content'; // Adds a placeholder
return $fields;
}
add_filter( 'matador_application_fields_structure', 'matador_tutorial_application_fields' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment