PHPackages                             bjoluc/wordcrumbs - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. bjoluc/wordcrumbs

AbandonedLibrary[Utility &amp; Helpers](/categories/utility)

bjoluc/wordcrumbs
=================

A simple PHP package to add breadcrumbs on any WordPress site

v1.0.0(7y ago)020GPL-3.0-or-laterPHP &gt;=5.4

Since Jun 14Compare

[ Source](https://github.com/bjoluc/wordcrumbs)[ Packagist](https://packagist.org/packages/bjoluc/wordcrumbs)[ Docs](https://github.com/bjoluc/wordcrumbs)[ RSS](/packages/bjoluc-wordcrumbs/feed)WikiDiscussions Synced 2d ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

WordCrumbs
==========

[](#wordcrumbs)

A simple PHP package to add breadcrumbs on any WordPress site

Ever needed to add customized breadcrumbs to your WordPress theme without annoying your users with a separate plugin? Now you can! WordCrumbs is a customizable, easily extensible PHP package to automatically generate breadcrumbs on WordPress sites. It comes with a set of formatters that can be used or extended to control WordCrumb's HTML output.

I want this, what do I have to do?
----------------------------------

[](#i-want-this-what-do-i-have-to-do)

If you do not use composer, [install](https://getcomposer.org/) it first. With composer installed, navigate to your theme's directory and run

```
composer require bjoluc/wordcrumbs

```

If your theme is not already using the composer autoloader, require it in your `functions.php`:

```
require __DIR__ . '/vendor/autoload.php';

```

After that, for example in your theme's `header.php`, you can use WordCrumbs like this:

```
