Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Last active March 2, 2016 00:13
Show Gist options
  • Save SeanChDavis/41806431127974d5e9ce to your computer and use it in GitHub Desktop.
Save SeanChDavis/41806431127974d5e9ce to your computer and use it in GitHub Desktop.
Child Theme Load Text Domain
function child_theme_slug_setup() {
load_child_theme_textdomain( 'parent-theme-slug', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'child_theme_slug_setup' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment