Hi!
I try to define child theme folder to my languages files, but doesn’t works.
The code is:
function my_child_theme_setup() {
load_child_theme_textdomain( 'dante-child', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'my_child_theme_setup' );
as explained here: http://codex.wordpress.org/Child_Themes#Internationalization
—
My files works fine inside languages folder main theme,
but it’s overwritten when new autoupdate function runs
and I prefer put inside child theme, it’s better.
Can you tell me which function/code it’s necessary to load child theme langs?