Skip to content

Instantly share code, notes, and snippets.

@mrfoxtalbot
Created August 5, 2016 16:23
Show Gist options
  • Save mrfoxtalbot/18ce2e0bb2d920c4d0e1bb882a46f094 to your computer and use it in GitHub Desktop.
Save mrfoxtalbot/18ce2e0bb2d920c4d0e1bb882a46f094 to your computer and use it in GitHub Desktop.
Add language based CSS class to body tag in WordPress
<?php
function append_language_class($classes){
$classes[] = ICL_LANGUAGE_CODE; //or however you want to name your class based on the 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