Advertisement
brooklyndesignstudio

Add Categories as CSS Classes

Jun 30th, 2020
1,185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. /***************************************************************************************
  2. ************************ [ ADD CATEGORIES AS CSS CLASSES ] ***************************/
  3.  
  4. function add_category_name($classes = '') {
  5.    if(is_single()) {
  6.       $category = get_the_category();
  7.       $classes[] = 'category-'.$category[0]->slug;
  8.    }
  9.    return $classes;
  10. }
  11. add_filter('body_class','add_category_name');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement