Last active
December 16, 2015 09:19
-
-
Save tecking/5412254 to your computer and use it in GitHub Desktop.
Welcart ログインウィジェットのラベルを置換してみました
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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