• Hello, I’m working on a child theme based on munsa-lite, and since it is translation-ready, I put the language po and mo files in the languages folder and added this function:

    function munsa_child_setup() {
        //prepare for translation
        load_child_theme_textdomain ('munsa-child', get_stylesheet_directory() . '/languages');
    }
    add_action ('after_setup_theme', 'munsa_child_setup');

    I changed the string munsa-lite for munsa-child on my template files, however, it is not working. Is there something else I am missing?

  • The topic ‘Translation’ is closed to new replies.