Created
December 15, 2019 02:55
-
-
Save yokada/cf101788787830d616f5b3b80b17ac3e to your computer and use it in GitHub Desktop.
translate site title using bogo function
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 | |
function translated_blogname($title) { | |
return bogo_translate('blogname', 'blogname', $title); | |
} | |
add_filter( 'pre_option_blogname', 'translated_blogname', 10, 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment