Hi!
I also tried to use the code in the file functions.php,but nothing works.
* Translations can be filed in the /language/ directory.
*/
function my_child_theme_setup() {
load_child_theme_textdomain( 'atelier-child', get_stylesheet_directory() . '/language' );
}
add_action( 'after_setup_theme', 'my_child_theme_setup' );
And this code does not work
add_action( 'after_setup_theme', 'my_translation_child_theme_setup' );
function my_translation_child_theme_setup() {
load_child_theme_textdomain( 'atelier-child', get_stylesheet_directory() . '/language' );
}
What you need to do to work ?