Skip to content

Instantly share code, notes, and snippets.

@khlbrg
Created February 20, 2014 12:02
Show Gist options
  • Save khlbrg/9112053 to your computer and use it in GitHub Desktop.
Save khlbrg/9112053 to your computer and use it in GitHub Desktop.
Set another language in WPML
add_action('after_setup_theme', 'my_icl_set_current_language');
function my_icl_set_current_language($lang) {
global $sitepress;
$lang = 'sv';
$sitepress->switch_lang($lang);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment