Last active
January 24, 2016 18:15
-
-
Save grakic/b62fd94a0e3ef9308497 to your computer and use it in GitHub Desktop.
Load custom WP Jetpack translations
This file contains hidden or 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 | |
define('CHILD_DIR', get_stylesheet_directory()); | |
/** | |
* Load Jetpack translations from themes/<theme>/lang/jetpack-sr_RS.mo | |
*/ | |
function my_theme_setup() | |
{ | |
unload_textdomain('jetpack'); | |
load_textdomain('jetpack', CHILD_DIR . '/lang/jetpack-sr_RS.mo'); | |
} | |
add_action('after_setup_theme', 'my_theme_setup'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment