Home › Forums › Support › Change Leave comment area language › Reply To: Change Leave comment area language
October 10, 2016 at 11:58 am
#234108
Yes sure ,
<?php
/**
* Generate child theme functions and definitions
*
* @package Generate
*/
/**
* Loads the child theme textdomain.
*/
function wpdocs_child_theme_setup() {
load_child_theme_textdomain( 'generatepress', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'wpdocs_child_theme_setup' );
?>