Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created January 5, 2016 15:49
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 billerickson/75b95cee09534f28fc05 to your computer and use it in GitHub Desktop.
Save billerickson/75b95cee09534f28fc05 to your computer and use it in GitHub Desktop.
<?php
/**
* Remove stuff on 404
*
*/
function be_remove_on_404() {
if( ! is_404() )
return;
// remove stuff from 404 page here
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
}
add_action( 'genesis_meta', 'be_remove_on_404' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment