Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Created March 30, 2016 04:45
Show Gist options
  • Select an option

  • Save hsleonis/3e6f89a9f32a3a80b65f5243ae4b7bef to your computer and use it in GitHub Desktop.

Select an option

Save hsleonis/3e6f89a9f32a3a80b65f5243ae4b7bef to your computer and use it in GitHub Desktop.
WP register text domain
<?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