Created
April 17, 2023 15:16
-
-
Save bacoords/6f1bce92cb344d208ddc85a6ba4298cd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
function my_body_classes( $classes ){ | |
if ( is_page( 'about' ) ) { | |
$classes[] = 'page-about'; | |
} | |
return $classes; | |
} | |
add_filter( 'body_class', 'my_body_classes' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment