Advertisement
secumbu

WP add body class based on tag

Dec 6th, 2022
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. function sec_add_body_class( $classes ) {
  2.     global $post;
  3.     if ( has_tag( 'the-tag-you-want', $post ) ) {
  4.         $classes[] = 'your-css-class';
  5.     }
  6.     return $classes;
  7. }
  8. add_filter( 'body_class', 'sec_add_body_class' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement