Skip to content

Instantly share code, notes, and snippets.

@bacoords
Created April 17, 2023 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bacoords/6f1bce92cb344d208ddc85a6ba4298cd to your computer and use it in GitHub Desktop.
Save bacoords/6f1bce92cb344d208ddc85a6ba4298cd to your computer and use it in GitHub Desktop.
<?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