Created
September 27, 2015 02:09
-
-
Save wpspeak/95eddabc165a343411d5 to your computer and use it in GitHub Desktop.
Remove Genesis Framework Breadcrumb
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 | |
//* Remove metaboxes in Genesis settings page | |
function afn_remove_metaboxes( $_genesis_theme_settings_pagehook ) { | |
remove_meta_box( 'genesis-theme-settings-breadcrumb', $_genesis_theme_settings_pagehook, 'main' ); | |
} | |
add_action( 'genesis_theme_settings_metaboxes', 'afn_remove_metaboxes' ); |
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 | |
//* Remove Genesis breadcrumb | |
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