Skip to content

Instantly share code, notes, and snippets.

@robbens
Last active April 18, 2017 10:55
Show Gist options
  • Save robbens/afbf2ca5e9905df3cca99459c0ef0347 to your computer and use it in GitHub Desktop.
Save robbens/afbf2ca5e9905df3cca99459c0ef0347 to your computer and use it in GitHub Desktop.
Load translations from WordPress child theme
<?php
/**
* Loads the child theme textdomain.
*/
function theme_child_slug_setup() {
load_child_theme_textdomain( 'child-theme-textdomain', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', theme_child_slug_setup' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment