Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created August 19, 2016 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save billerickson/c79c10b495b8bb5b8ff1c50834578d3c to your computer and use it in GitHub Desktop.
Save billerickson/c79c10b495b8bb5b8ff1c50834578d3c to your computer and use it in GitHub Desktop.
<?php
/**
* Body Classes
*
*/
function ea_body_classes( $classes ) {
if( is_front_page() && ! get_query_var( 'paged' ) )
$classes[] = 'front-page';
return $classes;
}
add_filter( 'body_class', 'ea_body_classes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment