Skip to content

Instantly share code, notes, and snippets.

@BhargavBhandari90
Last active July 8, 2021 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BhargavBhandari90/2aac81a99a20fb8507f257aef601061d to your computer and use it in GitHub Desktop.
Save BhargavBhandari90/2aac81a99a20fb8507f257aef601061d to your computer and use it in GitHub Desktop.
Add class to body in WordPress
<?php
function wp_custom_body_class( $classes ) {
if ( is_single() ) {
$classes[] = 'buntywp';
}
return $classes;
}
add_filter( 'body_class', 'wp_custom_body_class' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment