Skip to content

Instantly share code, notes, and snippets.

@ErikBernskiold
Last active December 20, 2015 01:19
Show Gist options
  • Save ErikBernskiold/6048104 to your computer and use it in GitHub Desktop.
Save ErikBernskiold/6048104 to your computer and use it in GitHub Desktop.
Function for loading a textdomain for a WordPress plugin.
/**
* Add textdomain for plugin
*/
function xld_add_textdomain() {
load_plugin_textdomain( 'textdomain', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
}
add_action( 'plugins_loaded', 'xld_add_textdomain' ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment