Created
March 30, 2016 04:45
-
-
Save hsleonis/3e6f89a9f32a3a80b65f5243ae4b7bef to your computer and use it in GitHub Desktop.
WP register text domain
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 | |
| /** | |
| * Register text domain | |
| * | |
| * @since 0.1 | |
| */ | |
| function tmx_textdomain() { | |
| load_plugin_textdomain( 'themeaxe', false, dirname(plugin_basename(__FILE__)). '/languages/' ); | |
| } | |
| add_action( 'init', 'tmx_textdomain' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment