Bread Crumb Plugin

This plugin provides “Bread Crumb” functionality via a function that can be added to your templates.

Current Version: 1.5

Download:

Download the latest version here or you can view the source.

Revision History:

version 1.0 Original Release
version 1.1 Added code to Capitalize Words
version 1.2 Added UL tags to output
version 1.3 Added signature idea from Rich Boakes
version 1.4 Made plugin identifier functions universal for all plugins
version 1.5 Added functions to stub to identify current available release. Adjusted options page to display. Fixed missing __CLASS__ constant for versions of PHP older than 4.3.0. Fixed issue with PHP5 installs.

Installation:

  1. Copy the file rjs-bread-crumb.php to the WordPress plugins directory on your server, (%WORDPRESS PATH%/wp-contents/plugins/).
  2. You will then need to activate the plugin from the WordPress administration plugins page.
  3. Modify your template to include a call to the BreadCrumb class.

Usage:

  • This plugin requires you to edit you template to include a call to the class BreadCrumb
    Example:
    <?php
    if(!is_callable('BreadCrumb','bread_crumb')) {
    BreadCrumb::bread_crumb();
    }
    ?>

 

Leave a comment