Created
March 15, 2012 20:20
-
-
Save billerickson/2046646 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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