Translate Child Theme
To internationalize a child theme, follow these steps below
- Add a languages directory to Child Theme
Something like: urbannews-child/languages/ - Add language files.
Your filenames have to be de-DE.po and de-DE.mo (depending on your language) - Add this code segment to urbannews-child/functions.php file
add_action( 'after_setup_theme', 'cactusthemes_child_setup' );
function cactusthemes_child_setup() {
load_child_theme_textdomain( 'cactusthemes', get_stylesheet_directory() . '/languages' );
}
?>