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.

Prime Strategy Bread Crumb

Description

This plugin adds the function to display breadcrumbs (topic path) navigation. You can use display styles, lots of parameters of styles and original plugin hooks of breadcrumbs navigation, and you can customize navigations flexibly.

Examples

Default
Template Tag

<?php if ( function_exists( 'bread_crumb' ) ) { bread_crumb(); } ?>

Output sample

<ul class="bread_crumb">
    <li class="level-1 top"><a href="http://www.example.com/">Home</a></li>
    <li class="level-2 sub"><a href="http://www.example.com/?post_type=seminar">Seminar</a></li>
    <li class="level-3 sub"><a href="http://www.example.com/?area=tokyo">Tokyo</a></li>
    <li class="level-4 sub tail current">WordBench Tokyo</li>
</ul>

String types
Template Tag

<?php if ( function_exists( 'bread_crumb' ) ) bread_crumb( 'type=string' ); ?>

Output Sample

<a href="http://www.example.com/">Home</a> &amp;gt; <a href="http://www.example.com/?post_type=seminar">Seminar</a> &amp;gt; <a href="http://www.example.com/?area=tokyo">Tokyo</a> &amp;gt; <strong class="current">WordBench Tokyo</strong>

CSS Sample

.bread_crumb {
    margin:0;
    border-bottom:1px solid #eee;
    padding:0.8em 0 0.5em;
    clear: both;
    height: 20px;
    background: #f8f8f8;
}
.bread_crumb li {
    font-size:12px;
    color:rgb(180,180,180);
    float:left;
    /*margin-right:1em;*/
    list-style: none outside none;
}
.bread_crumb li:after {
    content : '>';
    padding-left:10px;
    margin-right:10px;
}
.bread_crumb li:last-child:after {
    content : '';
}
.bread_crumb li a {
    color:rgb(120,120,120);
}
.bread_crumb li.current {
}

Special Thanks

English Translation:Odyssey

Links

PS Taxonomy Expander” makes categories, tags and custom taxonomies more useful.

PS Auto Sitemap” is a plugin automatically generates a site map page from your WordPress site.
It is easy to install for beginners and easy to customize for experts.
It can change the settings of the display of the lists from administration page, several neat CSS skins for the site map tree are prepared.

PS Disable Auto Formatting
Stops the automatic forming and the HTML tag removal in the html mode of WordPress, and generates a natural paragraph and changing line.

CMS service with WordPress” provides you service that uses WordPress as a CMS.

Screenshots

  • Output Sample of a breadcrumbs navigation

Installation

  1. Upload Prime Strategy Bread Cumb plugin folder you downloaded to the plugin directory.
  2. Go to the plugin menu of Admin, and activate “Prime Strategy Bread Crumb” plugin.
  3. Add a template tag “bread_crumb” of page navigation to the place where you would like to display breadcrumbs navigation in your theme. See below about parametes you can specify by template tags.

Parameters

type
If you specify “string”, output strings instead of list.
Default: list

home_label
Texts displayed on front page.
Default: home

search_label
Texts displayed on search results.
Default: Search Results of “%s” (%s : search strings)

404_label
Texts displayed on 404 page.
Default: 404 Not Found

category_label
Texts displayed on categories.
Default: %s (%s is a category label.)

tag_label
Texts displayed on tags.
Default: %s (%s is a tag label)

taxonomy_label
Texts displayed on taxonomies.
Default: %s (%s is a taxonomy label)

author_label
Texts displayed on authors’ page.
Default: %s (%s is author’s name)

attachment_label
Texts displayed on attachments.
Default: %s (%s is an attachment’s name)

year_label
Texts displayed on Yearly Archives.
Default: %s (%s is a year)

month_label
Texts displayed on Monthly Archives.
Default: %s (%s is monthly-display-type specified on date format)

day_label
Texts displayed on Daily Archives.
Default: %s (%s is a day)

post_type_label
Texts displayed on custom post type archives.
Default: %s (%s is custom post type label)

joint_string
If you specify “string” on type, strings between texts.
Default: ” &gt; ” ( > )

navi_element
Name of wrapper elements. You can select div or nav.
Default: none (no element)

elm_class
Name of wrapper class. If no wrapper element and type is “list”, name of “ul” class will be displayed.
Default: bread_crumb

elm_id
Name of wrapper id. iF no wrapper element and type is “list”, name of “ul” id will be displayed.
Default: none (no id)

li_class
Name of class added to li if type is “list”.
Default: none (no class)

class_prefix
prefix added to each class.
Default: none (no prefix)

current_class
Name of class added to breadcrumbs navigation on current page where you see.
Default: current

indent
Number of tab indent. Default: 0

echo
Output or not. Default: true (output).
If you specify 0 or false, return values as PHP.

Reviews

April 10, 2019
This was not what I expected. There is no control panel. I am unable to use this thing. Cutting and pasteing code is too risky for me. Heck I do not even understnad what they are trying to tell me to do. I wont trash the app or widget or plug in or what ever you call this. My skill level is -4. Donwload and activate then go the the dash board and choose settings. That is the app for me. This one requires more ability with the code that I posess. Glad someone Likes it. I can not use it.
September 3, 2016
Works as expected with all the options available and all this for free. Ideal if you want to use a custom css ! Thanks 🙂
Read all 7 reviews

Contributors & Developers

“Prime Strategy Bread Crumb” is open source software. The following people have contributed to this plugin.

Contributors

“Prime Strategy Bread Crumb” has been translated into 1 locale. Thank you to the translators for their contributions.

Translate “Prime Strategy Bread Crumb” into your language.

Interested in development?

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

Changelog

1.0.7

  • Compatible up to WordPress 5.0

1.0.6

  • Compatible up to WordPress 4.4
  • fix : wp_error taxonomy archive.

1.0.4

  • Compatible up to WordPress 3.4
  • Add filter hook “bread_crumb_arr”

1.0.4

  • Compatible up to WordPress 3.4
  • Add filter hook “bread_crumb_arr”

1.0.3

  • Compatible up to WordPress 3.3

1.0.2

  • refine ja.po, ja.mo

1.0.1

  • Duplicated function “get_author_name” replace to “get_the_author_meta”.

1.0.0

  • Opening on WordPress Plugin Directory.
  • Supported to display on archives of custom post types
  • Added post_type_label parameter.

0.8.1

  • Fixed the issue that true-values are not handled properly.
  • Supported query parameter of “m” (month).

0.8.0

  • Opening to the public.