Skip to content

Instantly share code, notes, and snippets.

@UserMetaPro
Created August 1, 2014 20:53
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 UserMetaPro/b93b738e091411b3f636 to your computer and use it in GitHub Desktop.
Save UserMetaPro/b93b738e091411b3f636 to your computer and use it in GitHub Desktop.
add_filter( 'user_meta_default_login_form', 'user_meta_default_login_form_function' );
function user_meta_default_login_form_function( $config ){
$config['login_label'] = "Your desire text for login input";
$config['pass_label'] = "Your desire text for password input";
$config['remember_label'] = "Your desire text for rember me checkbox";
$config['button_value'] = "Your desire text for login button";
return $config;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment