Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created March 15, 2012 20:20
Show Gist options
  • Select an option

  • Save billerickson/2046646 to your computer and use it in GitHub Desktop.

Select an option

Save billerickson/2046646 to your computer and use it in GitHub Desktop.
<?php
add_action( 'genesis_meta', 'be_remove_breadcrumbs_from_home' );
/**
* Remove Breadcrumbs from homepage
* @author Bill Erickson
*
*/
function be_remove_breadcrumbs_from_home() {
if( is_front_page() )
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment