Skip to content

Instantly share code, notes, and snippets.

@goliver79
Created February 5, 2014 14:17
Show Gist options
  • Save goliver79/8824472 to your computer and use it in GitHub Desktop.
Save goliver79/8824472 to your computer and use it in GitHub Desktop.
[WORDPRESS] Load Textdomain
<?php
// textdomain
add_action( 'after_setup_theme', 'my_theme_setup' );
function my_theme_setup(){
load_theme_textdomain( 'my_textdomain', get_stylesheet_directory(). '/lang' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment