Skip to content

Commit

Permalink
Fix Breadcrumb NavXT breadcrumb rendering
Browse files Browse the repository at this point in the history
It was removed by mistake in ee748ab
  • Loading branch information
piit79 committed Jul 5, 2024
1 parent 857c045 commit fad0db6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions inc/views/breadcrumbs.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,15 @@ public static function maybe_render_seo_breadcrumbs( $html_tag, $check = false )
}
}

// Breadcrumb NavXT breadcrumbs
if ( function_exists( 'bcn_display' ) ) {
echo '<small class="neve-breadcrumbs-wrapper">';
bcn_display();
echo '</small>';

return true;
}

return false;
}

Expand Down

0 comments on commit fad0db6

Please sign in to comment.