Skip to content

Instantly share code, notes, and snippets.

@oalansari82
Last active February 2, 2017 17:26
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 oalansari82/58e550f40aae1dae3708394756c23041 to your computer and use it in GitHub Desktop.
Save oalansari82/58e550f40aae1dae3708394756c23041 to your computer and use it in GitHub Desktop.
WPML Language Selector Function
<?php
// WPML Language Selector
function io_language_selector( $english, $arabic ) {
if ( 'en' == ICL_LANGUAGE_CODE ) {
return $english;
}
elseif ( 'ar' == ICL_LANGUAGE_CODE ) {
return $arabic;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment