Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save INDIAN2020/66dc0e8791a2ac68bc57b068537554c4 to your computer and use it in GitHub Desktop.
Save INDIAN2020/66dc0e8791a2ac68bc57b068537554c4 to your computer and use it in GitHub Desktop.
Override Enfold language files in Child Theme #enfold #translation
<?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