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 plugin-republic/5c5653f4ee77a26866e4353b2e7b032f to your computer and use it in GitHub Desktop.
Save plugin-republic/5c5653f4ee77a26866e4353b2e7b032f to your computer and use it in GitHub Desktop.
<?php
/**
* Change the label for the 'Role' field in the registration form
*/
function prefix_registration_form_role_label( $label ) {
return 'Your label here';
}
add_filter( 'wcmo_registration_form_role_label', 'prefix_registration_form_role_label' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment