Last active
March 2, 2016 00:13
-
-
Save SeanChDavis/41806431127974d5e9ce to your computer and use it in GitHub Desktop.
Child Theme Load Text Domain
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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