Skip to content

Instantly share code, notes, and snippets.

@mrfoxtalbot
Created April 18, 2016 12:48
Show Gist options
  • Save mrfoxtalbot/5dbefd3bff58e48f81fa66eae27e359c to your computer and use it in GitHub Desktop.
Save mrfoxtalbot/5dbefd3bff58e48f81fa66eae27e359c to your computer and use it in GitHub Desktop.
Get WordPress localization file from child theme
// Load translation files from your child theme instead of the parent theme
function my_child_theme_locale() {
load_child_theme_textdomain( 'total', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'my_child_theme_locale' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment