This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Menu Breadcrumb

ਵੇਰਵਾ

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

ਸਮੀਖਿਆਵਾਂ

3 ਸਤੰਬਰ 2016
As I see, it works with WP 4.2.2. The Theme is being developed, so i could not find any bugs so far.
Read all 2 reviews

ਯੋਗਦਾਨੀ ਤੇ ਵਿਕਾਸਕਾਰ

“Menu Breadcrumb” is open source software. The following people have contributed to this plugin.

ਯੋਗਦਾਨੀ

“Menu Breadcrumb” ਦਾ ਆਪਣੀ ਭਾਸ਼ਾ ਵਿੱਚ ਅਨੁਵਾਦ ਕਰੋ।

ਵਿਕਾਸ ਕਾਰਜ ਵਿੱਚ ਰੁਚੀ ਰੱਖਦੇ ਹੋ?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

ਤਬਦੀਲੀ-ਚਿੱਠਾ

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