Skip to main content
SnippetsWordpress

Add Category to Body Class

By March 31, 2020April 11th, 2020No Comments
add_filter('body_class','add_category_to_single');
  function add_category_to_single($classes) {
    if (is_single() ) {
      global $post;
      foreach((get_the_category($post->ID)) as $category) {
        // add category slug to the $classes array
        $classes[] = $category->category_nicename;
      }
    }
    // return the $classes array
    return $classes;
  }

Contact us to learn more about Adopt the Web for your business

Author Jarod Thornton

More posts by Jarod Thornton