Last active
July 12, 2017 09:40
-
-
Save wpexplorer/a6672144990e07a4db50 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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