Skip to content

Instantly share code, notes, and snippets.

@ssteinker
Created January 15, 2014 08:39
Show Gist options
  • Save ssteinker/8432793 to your computer and use it in GitHub Desktop.
Save ssteinker/8432793 to your computer and use it in GitHub Desktop.
simple php if-function to output language specific content for WPML. WPML if requested language code is…
<?php if ( ICL_LANGUAGE_CODE=='en' ) : ?>
ENG
<?php endif; ?>
<?php if ( ICL_LANGUAGE_CODE=='de' ) : ?>
DE
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment