Forked from yanknudtskov/child-theme-language-override.php
Created
June 18, 2018 06:20
-
-
Save INDIAN2020/66dc0e8791a2ac68bc57b068537554c4 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