Title: Full Breadcrumb
Author: Pedro Elsner
Published: <strong>19. August 2012</strong>
Last modified: 19. November 2012

---

Plugins suchen

Dieses Plugin wurde **nicht mit den 3 neuesten Hauptversionen von WordPress getestet**.
Es wird möglicherweise nicht mehr gepflegt oder unterstützt und kann bei der Verwendung
mit neueren WordPress-Versionen zu Kompatibilitätsproblemen führen.

![](https://s.w.org/plugins/geopattern-icon/full-breadcrumb.svg)

# Full Breadcrumb

 Von [Pedro Elsner](https://profiles.wordpress.org/pedro-elsner/)

[Herunterladen](https://downloads.wordpress.org/plugin/full-breadcrumb.zip)

 * [Details](https://de.wordpress.org/plugins/full-breadcrumb/#description)
 * [Rezensionen](https://de.wordpress.org/plugins/full-breadcrumb/#reviews)
 *  [Installation](https://de.wordpress.org/plugins/full-breadcrumb/#installation)
 * [Entwicklung](https://de.wordpress.org/plugins/full-breadcrumb/#developers)

 [Support](https://wordpress.org/support/plugin/full-breadcrumb/)

## Beschreibung

 * Support Hierarquical Taxonomies

Show breadcrumb in pages, posts, custom posts, categories, taxonomies, tags, authors,
attachments and archives.

#### Basic Usage

Put this code `<?php if (function_exists('show_full_breadcrumb')) show_full_breadcrumb();?
>` in your theme and enjoy!

Or, for to get the breadcrumb: `<?php if (function_exists('get_full_breadcrumb'))
$var = get_full_breadcrumb(); ?>`

In `get_full_breadcrumb` you can use the additional parameter `'type' => 'array'`
to return an array with the links. eg. `array( 'type' => 'array' )`

#### Basic Customization

    ```
    <?php
    show_full_breadcrumb(
        array(
            'separator' => array(
                'content' => '&raquo;'
            ), // set FALSE to hide
            'home' => array(
                'showLink' => false
            )
        )
    );
    ?>
    ```

#### Advanced Customization

    ```
    <?php
    if (function_exists('show_full_breadcrumb')) show_full_breadcrumb(
        array(
            'labels' => array(
                'local'  => __('You are here:'), // set FALSE to hide
                'home'   => __('Home'),
                'page'   => __('Page'),
                'tag'    => __('Tag'),
                'search' => __('Searching for'),
                'author' => __('Published by'),
                '404'    => __('Error 404 &rsaquo; Page not found')
            ),
            'separator' => array(
                'element' => 'span',
                'class'   => 'separator',
                'content' => '&rsaquo;'
            ), // set FALSE to hide
            'local' => array(
                'element' => 'span',
                'class'   => 'local'
            ),
            'home' => array(
                'showLink'       => false,
                'showBreadcrumb' => true
            ),
            'actual' => array(
                'element' => 'span',
                'class'   => 'actual'
            ), // set FALSE to hide
            'quote' => array(
                'tag'    => true,
                'search' => true
            ),
            'page_ancestors' => array(
                'showLink' => false
            )
        )
    );
    ?>
    ```

#### Settings for Portuguese-BR

    ```
    <?php
    if (function_exists('show_full_breadcrumb')) show_full_breadcrumb(
        array(
            'labels' => array(
                'local'  => __('Você está aqui:'), // set FALSE to hide
                'home'   => __('Início'),
                'page'   => __('Página'),
                'tag'    => __('Etiqueta'),
                'search' => __('Buscando'),
                'author' => __('Publicado por'),
                '404'    => __('Error 404 &rsaquo; Página não encontrada')
            ),
            'separator' => array(
                'element' => 'span',
                'class'   => 'separator',
                'content' => '&rsaquo;'
            ), // set FALSE to hide
            'home' => array(
                'showLink' => true
            )
        )
    );
    ?>
    ```

## Screenshots

[⌊The Full Breadcrumb in my (Pedro Elsner) website =)⌉⌊The Full Breadcrumb in my(
Pedro Elsner) website =)⌉[

The Full Breadcrumb in my (Pedro Elsner) website =)

## Installation

 1. Go to your admin area and select Plugins -> Add new from the menu.
 2. Search for „Full Breadcrumb“.
 3. Click install.
 4. Click activate.
 5. Put this code `<?php if (function_exists('show_full_breadcrumb')) show_full_breadcrumb();?
    >` in your theme and enjoy!

See the [description tab](https://wordpress.org/extend/plugins/full-breadcrumb/screenshots/)
to know how customize. the breadcrumb,

## Rezensionen

Zu diesem Plugin liegen noch keine Rezensionen vor.

## Mitwirkende und Entwickler

„Full Breadcrumb“ ist Open-Source-Software. Folgende Menschen haben an diesem Plugin
mitgewirkt:

Mitwirkende

 *   [ Pedro Elsner ](https://profiles.wordpress.org/pedro-elsner/)

[Übersetze „Full Breadcrumb“ in deine Sprache.](https://translate.wordpress.org/projects/wp-plugins/full-breadcrumb)

### Interessiert an der Entwicklung?

[Durchstöbere den Code](https://plugins.trac.wordpress.org/browser/full-breadcrumb/),
sieh dir das [SVN-Repository](https://plugins.svn.wordpress.org/full-breadcrumb/)
an oder abonniere das [Entwicklungsprotokoll](https://plugins.trac.wordpress.org/log/full-breadcrumb/)
per [RSS](https://plugins.trac.wordpress.org/log/full-breadcrumb/?limit=100&mode=stop_on_copy&format=rss).

## Änderungsprotokoll

#### 1.2

 * Added a option to enable links to page’s acestors.
 * Added a option to disable the element in actual.
 * Bug correction. Returns a empty register in array.

#### 1.1

 * Bug correction. Breaks on author without published posts.
 * Include all category hierarchy of the post.
 * Added a option to return as array.
 * Added a option to disable the quotes in search and tags.
 * Added a option to hide the separator.

#### 1.0

 * First revision.

## Meta

 *  Version **1.2**
 *  Zuletzt aktualisiert **vor 14 Jahren**
 *  Aktive Installationen **100+**
 *  WordPress-Version ** 2.8 oder höher **
 *  Getestet bis **3.4.2**
 *  Sprache
 * [English (US)](https://wordpress.org/plugins/full-breadcrumb/)
 * Schlagwörter
 * [breadcrumb](https://de.wordpress.org/plugins/tags/breadcrumb/)[breadcrumb for custom posts](https://de.wordpress.org/plugins/tags/breadcrumb-for-custom-posts/)
   [breadcrumb support taxonomy](https://de.wordpress.org/plugins/tags/breadcrumb-support-taxonomy/)
   [taxonomy hierarquical](https://de.wordpress.org/plugins/tags/taxonomy-hierarquical/)
 *  [Erweiterte Ansicht](https://de.wordpress.org/plugins/full-breadcrumb/advanced/)

## Bewertungen

 4 von 5 Sternen.

 *  [  0 5-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/full-breadcrumb/reviews/?filter=5)
 *  [  2 4-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/full-breadcrumb/reviews/?filter=4)
 *  [  0 3-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/full-breadcrumb/reviews/?filter=3)
 *  [  0 2-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/full-breadcrumb/reviews/?filter=2)
 *  [  0 1-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/full-breadcrumb/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/full-breadcrumb/reviews/#new-post)

[Alle Rezensionen anzeigen](https://wordpress.org/support/plugin/full-breadcrumb/reviews/)

## Mitwirkende

 *   [ Pedro Elsner ](https://profiles.wordpress.org/pedro-elsner/)

## Support

Möchtest du etwas mitteilen? Brauchst du Unterstützung?

 [Support-Forum anzeigen](https://wordpress.org/support/plugin/full-breadcrumb/)