Skip to content

Instantly share code, notes, and snippets.

@ajmaurya99
Created October 12, 2020 12:36
Show Gist options
  • Save ajmaurya99/0da89a83678b20953701e2ba7cbb5bb3 to your computer and use it in GitHub Desktop.
Save ajmaurya99/0da89a83678b20953701e2ba7cbb5bb3 to your computer and use it in GitHub Desktop.
WordPress add class to body tag for all the pages.
add_filter('body_class', 'wp_body_class');
function wp_body_class($class)
{
$class[] = 'my-custom-class'; // Add your class name here. Multiple class names can be added 'classname1 classname2'.
return $class;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment