Skip to content

Instantly share code, notes, and snippets.

@rosschapman
Created July 1, 2013 21:05
Show Gist options
  • Save rosschapman/5904628 to your computer and use it in GitHub Desktop.
Save rosschapman/5904628 to your computer and use it in GitHub Desktop.
<?php
function not_foo( $class ) {
if ( get_bloginfo('name') != 'foo' ) {
$class[] = 'not_foo';
}
else {};
return $class;
}
add_filter('body_class','not_foo');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment