Skip to content

Instantly share code, notes, and snippets.

@shazdeh
Created March 5, 2014 12:05
Show Gist options
  • Save shazdeh/9365953 to your computer and use it in GitHub Desktop.
Save shazdeh/9365953 to your computer and use it in GitHub Desktop.
WPML body classes
<?php
function append_language_class( $classes ) {
$classes[] = ICL_LANGUAGE_CODE;
return $classes;
}
add_filter( 'body_class', 'append_language_class' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment