Skip to content

Instantly share code, notes, and snippets.

@rickrduncan
Created November 8, 2015 12:32
Show Gist options
  • Select an option

  • Save rickrduncan/22b45d5b018ed17dd585 to your computer and use it in GitHub Desktop.

Select an option

Save rickrduncan/22b45d5b018ed17dd585 to your computer and use it in GitHub Desktop.
<?php
//* Do NOT include the opening php tag
//* Remove breadcrumb from a single page
//* https://codex.wordpress.org/Function_Reference/is_page
function b3m_remove_genesis_breadcrumb() {
if ( is_page( 'resources' ) ) {
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
}
}
add_action( 'genesis_before', 'b3m_remove_genesis_breadcrumb' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment