Skip to content

Instantly share code, notes, and snippets.

@tecking
Last active December 16, 2015 09:19
Show Gist options
  • Save tecking/5412254 to your computer and use it in GitHub Desktop.
Save tecking/5412254 to your computer and use it in GitHub Desktop.
Welcart ログインウィジェットのラベルを置換してみました
<?php
add_filter( 'usces_filter_login_widget', 'my_usces_filter_login_widget' );
function my_usces_filter_login_widget( $loginbox ) {
return str_replace( 'メールアドレス', 'メアド', $loginbox );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment