Skip to content

Instantly share code, notes, and snippets.

@taninbkk
Last active June 1, 2017 08:33
Show Gist options
  • Save taninbkk/3e4a4fc2ed53540c889f3f7c9bc8f7db to your computer and use it in GitHub Desktop.
Save taninbkk/3e4a4fc2ed53540c889f3f7c9bc8f7db to your computer and use it in GitHub Desktop.
add custom class to wordpress body class (woocommerce shop page)
add_filter( 'body_class', 'custom_class' );
function custom_class( $classes ) {
if (is_shop()) {
$classes[] = 'shop';
}
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment