Title: Full Breadcrumb
Author: Pedro Elsner
Published: <strong>2012 年 8 月 19 日</strong>
Last modified: 2012 年 11 月 19 日

---

搜索插件

**该插件尚未通过WordPress的最新3个主要版本进行测试**。 当与较新版本的WordPress一起
使用时，可能不再受到维护或支持，并且可能会存在兼容性问题。

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

# Full Breadcrumb

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

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

 * [详情](https://cn.wordpress.org/plugins/full-breadcrumb/#description)
 * [评价](https://cn.wordpress.org/plugins/full-breadcrumb/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/full-breadcrumb/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/full-breadcrumb/#developers)

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

## 描述

 * 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
            )
        )
    );
    ?>
    ```

## 屏幕截图

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

## 安装

 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,

## 评价

此插件暂无评价。

## 贡献者及开发者

「Full Breadcrumb」是开源软件。 以下人员对此插件做出了贡献。

贡献者

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

[帮助将「Full Breadcrumb」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/full-breadcrumb)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/full-breadcrumb/)，查看
[SVN仓库](https://plugins.svn.wordpress.org/full-breadcrumb/)，或通过[RSS](https://plugins.trac.wordpress.org/log/full-breadcrumb/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/full-breadcrumb/)。

## 更新日志

#### 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.

## 额外信息

 *  版本 **1.2**
 *  最后更新：**14 年前**
 *  活跃安装数量 **100+**
 *  WordPress 版本 ** 2.8 或更高版本 **
 *  已测试的最高版本为 **3.4.2**
 *  语言
 * [English (US)](https://wordpress.org/plugins/full-breadcrumb/)
 * 标签
 * [breadcrumb](https://cn.wordpress.org/plugins/tags/breadcrumb/)[breadcrumb for custom posts](https://cn.wordpress.org/plugins/tags/breadcrumb-for-custom-posts/)
   [breadcrumb support taxonomy](https://cn.wordpress.org/plugins/tags/breadcrumb-support-taxonomy/)
   [taxonomy hierarquical](https://cn.wordpress.org/plugins/tags/taxonomy-hierarquical/)
 *  [高级视图](https://cn.wordpress.org/plugins/full-breadcrumb/advanced/)

## 评级

 4 星（最高 5 星）。

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

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

[查看全部评论](https://wordpress.org/support/plugin/full-breadcrumb/reviews/)

## 贡献者

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

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/full-breadcrumb/)