WordPress and buddypress programming

remove bbpress breadcrumbs

Viewing 1 reply thread
  • Author
    Posts
    • #2209
      michael mc
      Keymaster
      @michael

      function mycustom_breadcrumb_options() {
      // Home – default = true
      $args[‘include_home’] = false;
      // Forum root – default = true
      $args[‘include_root’] = false;
      // Current – default = true
      $args[‘include_current’] = true;

      return $args;
      }

      add_filter(‘bbp_before_get_breadcrumb_parse_args’, ‘mycustom_breadcrumb_options’ );
      `

    • #2210
      michael mc
      Keymaster
      @michael

      come to find out this filter works better

       //rid bbpress breadcrumbs
                            add_filter( 'bbp_no_breadcrumb', '__return_true' );
Viewing 1 reply thread
  • You must be logged in to reply to this topic.