Menu Breadcrumb Icon

Menu Breadcrumb

By Jon Christopher

Active Installs

300+

Last Updated

December 30, 2025

First Released

November 18, 2014

Download History (Last one month)


Contributors

Breadcrumbs are often generated from Page structure, but in a world of Custom Post Types that doesn’t always work. Menu Breadcrumb uses your WordPress Menu to generate a breadcrumb trail based on the current page.

View on GitHub!

  1. Download menu-breadcrumb.zip and extract
  2. Upload the menu-breadcrumb folder to the /wp-content/plugins/ directory
  3. Activate the plugin through the ‘Plugins’ menu in WordPress
  4. Place <?php if ( function_exists( 'menu_breadcrumb') ) { menu_breadcrumb( 'my-menu-id' ); } ?> in your templates where you want the breadcrumb to appear
How do I output a breadcrumb trail?

Add the following to your theme template where you would like to output the breadcrumb:

<?php
    if ( function_exists( 'menu_breadcrumb') ) {
        menu_breadcrumb(
            'main',                             // Menu Location to use for breadcrumb
            ' &raquo; ',                        // separator between each breadcrumb
            '<p class="menu-breadcrumb">',      // output before the breadcrumb
            '</p>'                              // output after the breadcrumb
        );
    }
?>

More documentation?

Of course! https://github.com/jchristopher/menu-breadcrumb

Can I contribute?

Of course! https://github.com/jchristopher/menu-breadcrumb

Changelog

1.0.3

  • Add filter to allow custom breadcrumbs. Props benjaminpick
  • If empty breadcrumbs he shouldn’t show $before and $after. Props benjaminpick
  • Tested up to WordPress 6.9

1.0.2

  • Added a menu_breadcrumb_level property to each breadcrumb object

1.0.1

  • Fixed an issue where the Menu wasn’t properly retrieved from the location

1.0.0

  • Initial release
<br />
<b>Warning</b>:  Undefined array key /home/ylinkin/truewp.net/wp-content/plugins/truewp-plugin-info/truewp-plugin-info.php on line 756
" width="120" height="120">

Available Versions

Version Download Type
1.0.3 Download Stable
1.0.2 Download Stable
1.0.1 Download Stable
1.0.0 Download Stable
Development Download Trunk

Plugin Info

  • Version: 1.0.3
  • Last Updated: December 30, 2025
  • Active Installs: 300+
  • WordPress Version: 4.0 or higher
  • Tested up to: 6.9.4
  • PHP Version: or higher
  • Tags:    
    breadcrumb breadcrumbs menu nav navigation

Ratings


5.0 out of 5 stars. (2 reviews)

See all reviews
Scroll to Top