Skip to content

Instantly share code, notes, and snippets.

@grakic
Last active January 24, 2016 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grakic/b62fd94a0e3ef9308497 to your computer and use it in GitHub Desktop.
Save grakic/b62fd94a0e3ef9308497 to your computer and use it in GitHub Desktop.
Load custom WP Jetpack translations
<?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