Skip to content

Instantly share code, notes, and snippets.

@hissy
Created August 24, 2013 06:02
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 hissy/8417049111c16fb905a9 to your computer and use it in GitHub Desktop.
Save hissy/8417049111c16fb905a9 to your computer and use it in GitHub Desktop.
WordFes Nagoya 2013 練習問題の解答(その1)
<?php
/*
Plugin Name: Customize Login
Version: 0.1
*/
function change_login_errors( $errors ) {
return str_replace( '。', '♡', $errors );
}
add_filter( 'login_errors', 'change_login_errors' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment