How To Implement Breadcrumb Trail Navigation In BuddyPress?

WordPress has many breadcrumb plugins and we discussed about them in a tutorial. Breadcrumbs are not just limited to blogging sites but you can also use it in your BuddyPress network. You can adds breadcrumb trail navigation to your BuddyPress site simply by adding a line of code to your template.

We will be using Breadcrumbs Everywhere, a free breadcrumb plugin for BuddyPress users. So install and activate the plugin and then add the following function anywhere in your BuddyPress template, typically in your theme’s header.php file:

<?php if (function_exists('breadcrumbs_everywhere')) breadcrumbs_everywhere(); ?>

This slideshow requires JavaScript.

That’s it. You are done. But optionally, the plugin also allows you to set custom text for home link, blog link and a custom breadcrumb divider, all from its admin options page.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.