Skip to content

Instantly share code, notes, and snippets.

@oliwa
Last active December 5, 2018 07:09
Show Gist options
  • Select an option

  • Save oliwa/a90995e13a1b2f633de9 to your computer and use it in GitHub Desktop.

Select an option

Save oliwa/a90995e13a1b2f633de9 to your computer and use it in GitHub Desktop.
add blog ID to body class
<?php
// add blog_ID class to the body tag, see http://zurb.com/forrst/posts/Wordpress_multisite_blog_class-dAb
add_action( 'body_class', 'wpmu_body_class' );
function wpmu_body_class( $class ) {
global $current_blog;
$class[] = 'site-lang-' . $current_blog-> blog_id;
return $class;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment