Skip to content

Instantly share code, notes, and snippets.

@MZAWeb
Last active December 14, 2015 17:29
Show Gist options
  • Save MZAWeb/5122874 to your computer and use it in GitHub Desktop.
Save MZAWeb/5122874 to your computer and use it in GitHub Desktop.
Remove breadcrums for bbPress shortcodes
<?php
add_filter( 'the_content', 'remove_breadcrum', 0 );
add_filter( 'the_content', 'add_breadcrum', 1000 );
function remove_breadcrum( $content ) {
add_filter( 'bbp_no_breadcrumb', '__return_true' );
return $content;
}
function add_breadcrum( $content ) {
remove_filter( 'bbp_no_breadcrumb', '__return_true' );
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment