Last active
June 18, 2018 06:20
-
-
Save yanknudtskov/f30f514102c5b742a76753f293da130b to your computer and use it in GitHub Desktop.
Override Enfold language files in Child Theme #enfold #translation
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
| <?php | |
| /** | |
| * Override Language Files for Enfold Child Theme | |
| */ | |
| function yanco_overwrite_language_file_child_theme() { | |
| $lang = get_stylesheet_directory().'/lang'; | |
| return $lang; | |
| } | |
| add_filter('ava_theme_textdomain_path', 'yanco_overwrite_language_file_child_theme'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment