Answer the question
In order to leave comments, you need to log in
Why is localization not applied in wordpress child theme?
Site on wordpress. I created a localized translation of the theme, I want to place it in the lang child theme folder. I do everything in accordance with the manual at the link . In the child theme functions.php I write:
/**
* Child theme language
*/
function my_child_theme_setup() {
$path = get_stylesheet_directory() . '/lang';
var_dump($path);
load_child_theme_textdomain( 'child_theme_language', $path );
}
add_action( 'after_setup_theme', 'my_child_theme_setup' );
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question