Skip to content

Instantly share code, notes, and snippets.

@yanknudtskov
Last active June 18, 2018 06:20
Show Gist options
  • Save yanknudtskov/f30f514102c5b742a76753f293da130b to your computer and use it in GitHub Desktop.
Save yanknudtskov/f30f514102c5b742a76753f293da130b 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