Last active
April 18, 2017 10:55
-
-
Save robbens/afbf2ca5e9905df3cca99459c0ef0347 to your computer and use it in GitHub Desktop.
Load translations from WordPress child theme
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
<?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