Advertisement
kkarpieszuk

WordPress WPML switch language to default and back

Mar 28th, 2014
3,128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2. // snippet for resetting WPML language to default, do something and switch back to site language
  3.  
  4. global $sitepress;
  5.  
  6. $current_language = $sitepress->get_current_language();
  7. $default_language = $sitepress->get_default_language();
  8.  
  9. $sitepress->switch_lang($default_language);
  10.  
  11. // do what you want to do
  12.  
  13. $sitepress->switch_lang($current_language);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement