Skip to content

Instantly share code, notes, and snippets.

@wpexplorer
Last active July 12, 2017 09:40
Show Gist options
  • Select an option

  • Save wpexplorer/a6672144990e07a4db50 to your computer and use it in GitHub Desktop.

Select an option

Save wpexplorer/a6672144990e07a4db50 to your computer and use it in GitHub Desktop.
// 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