Last active
November 29, 2019 22:38
-
-
Save soundslikeinfo/2154264 to your computer and use it in GitHub Desktop.
[Genesis Custom Body Class] #LegacyGISTS
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
add_filter( 'body_class', 'gk_add_body_class' ); | |
function gk_add_body_class( $classes ) { | |
$classes[] = 'custom-class'; | |
$classes[] = $_GET['bg'] == 1 ? 'bg1': ''; | |
$classes[] = $_GET['bg'] == 2 ? 'bg2': ''; | |
$classes[] = $_GET['bg'] == 3 ? 'bg3': ''; | |
$classes[] = $_GET['bg'] == 4 ? 'bg4': ''; | |
return $classes; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment