Last active
December 19, 2015 21:49
-
-
Save jonbellah/6023302 to your computer and use it in GitHub Desktop.
Add Body Class in WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function add_about_body_class( $classes ) { | |
if( is_page('about') ) | |
$classes[] = 'about'; | |
return $classes; | |
} | |
add_filter( 'body_class', 'add_about_body_class' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment