Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function prefix_conditional_body_class($classes) {
  2. if ( get_page_template_slug(get_the_ID()) === 'mytemplate.php' ) {
  3. $classes[] = 'mytemplate';
  4. }
  5. return $classes;
  6. }
  7.  
  8. add_filter( 'body_class', 'prefix_conditional_body_class' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement