Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created January 23, 2018 21:54
Show Gist options
  • Save billerickson/8cdc4d667a59ee08ade77ffb26d63193 to your computer and use it in GitHub Desktop.
Save billerickson/8cdc4d667a59ee08ade77ffb26d63193 to your computer and use it in GitHub Desktop.
<?php
/**
* 404 Page Body Classes
*
*/
function be_404_page_body_classes( $classes ) {
if( is_404() ) {
$classes[] = 'fixed-footer';
}
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment