Fix for breadcrumbs appearing on iThemes ghost pages with Genesis themes
<?php // be sure to remove this line!
// Workaround for iThemes Exchange breadcrumbs issue.
// Strip breadcrumbs on iThemes Exchange ghost pages unless
// Genesis settings have enabled breadcrumbs on pages.
add_action( 'genesis_before_content', 'studiopress_it_exchange_breadcrumbs' );
function studiopress_it_exchange_breadcrumbs() {
global $post;
$is_ghost_page = strpos($post->post_name, 'it-exchange-ghost');
if ( $is_ghost_page === false || genesis_get_option( 'breadcrumb_page' ) )
return;
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
}