Guest User

Untitled

a guest
Sep 25th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. /**
  3. * Plugin: Quick Langauge Switcher
  4. * Note, this only sets the site language, if your user has a user-specific language set, it won't change.
  5. */
  6. // sv_SE, ja, ko_KR, ar, he_IL
  7. function kdwan_switch_language( $locale ) {
  8. if ( isset( $_GET['l'] ) ) {
  9. return sanitize_key( $_GET['l'] );
  10. }
  11.  
  12. return $locale;
  13. }
  14. add_filter( 'locale', 'kdwan_switch_language' );
Add Comment
Please, Sign In to add comment