Title: Jinx-Breadcrumbs
Author: Lukas Rydygel
Published: <strong>30 Novembre 2020</strong>
Last modified: 4 Giugno 2021

---

Ricerca i plugin

![](https://ps.w.org/jinx-breadcrumbs/assets/banner-772x250.jpg?rev=2428656)

Questo plugin **non è stato testato con le ultime 3 versioni principali (major releases)
di WordPress**. Potrebbe non essere più mantenuto, o supportato, e potrebbe presentare
problemi di compatibilità se utilizzato con versioni più recenti di WordPress.

![](https://ps.w.org/jinx-breadcrumbs/assets/icon-256x256.png?rev=2428656)

# Jinx-Breadcrumbs

 Di [Lukas Rydygel](https://profiles.wordpress.org/lugat/)

[Scarica](https://downloads.wordpress.org/plugin/jinx-breadcrumbs.zip)

 * [Dettagli](https://it.wordpress.org/plugins/jinx-breadcrumbs/#description)
 * [Recensioni](https://it.wordpress.org/plugins/jinx-breadcrumbs/#reviews)
 *  [Installazione](https://it.wordpress.org/plugins/jinx-breadcrumbs/#installation)
 * [Sviluppo](https://it.wordpress.org/plugins/jinx-breadcrumbs/#developers)

 [Supporto](https://wordpress.org/support/plugin/jinx-breadcrumbs/)

## Descrizione

The plugin allows you to render breadcrumbs and configurate them with filters.

### Usage

Use the function ‘jinx_breadcrumbs’ to render the breadcrumbs where you want them
to be. You may overwrite the default arguments by passing an array to the function.

    ```
    <?php

      if (function_exists('jinx_breadcrumbs')) :

        jinx_breadcrumbs([
          // default args
          'home' => __('Home', 'jinx-breadcrumbs'),
          'search' => __('Search: "%s"', 'jinx-breadcrumbs'),
          '404' => __('Error 404', 'jinx-breadcrumbs'),
          'author' => __('Author: %s', 'jinx-breadcrumbs'),
          'year' => 'Y',
          'month' => 'F',
          'day' => 'd',
          'before' => '<nav aria-label="breadcrumb"><ol>',
          'after' => '</ol></nav>',
          'before_item' => '<li%s>',
          'after_item' => '</li>',
        ]);

      endif;

    ?>
    ```

You may also use the filter ‘jinx_jinx_breadcrumbs’ to overwrite them.

    ```
    <?php

      add_filter('jinx_breadcrumbs', function($args) {

        return array_merge($args, [
          'home' => __('Start', 'cca'),
          'search' => __('Your searched for "%s"', 'cca'),
        ]);

      });

    ?>
    ```

The plugin will automatically try to find the correct archive pages by using the
rewrite slug of custom taxonomies and post types.

If you may want to change this behavior, you may use some filters to manipulate 
the archive page.

If you return NULL, the archive page will be removed.

    ```
    <?php

      // filters the archive page, passing the PID, type ('taxonomy' or 'post_type') and name (eg. 'video')
      add_filter('jinx_breadcrumbs_archive', function($pid, $type, $name) {

        return $pid;

      }, 10, 3);

      // filters the archive page, passing the PID and name (eg. 'video')
      // the type is part of the filter (eg. 'jinx_breadcrumbs_archive_taxonomy')
      add_filter('jinx_breadcrumbs_archive_{type}', function($pid, $name) {

        return $pid;

      }, 10, 2);

      // filters the archive page, passing the PID
      // the type and name are part of the filter (eg. 'jinx_breadcrumbs_archive_post_type_video')
      add_filter('jinx_breadcrumbs_archive_{type}_{name}', function($pid) {

        return $pid;

      }, 10, 1);

    ?>
    ```

## Installazione

 1. Unzip the downloaded package
 2. Upload `jinx-block-renderer` to the `/wp-content/plugins/` directory
 3. Activate the plugin through the ‘Plugins’ menu in WordPress

## Recensioni

Non ci sono recensioni per questo plugin.

## Contributi e sviluppo

“Jinx-Breadcrumbs” è un software open source. Le persone che hanno contribuito allo
sviluppo di questo plugin sono indicate di seguito.

Collaboratori

 *   [ Lukas Rydygel ](https://profiles.wordpress.org/lugat/)

[Traduci “Jinx-Breadcrumbs” nella tua lingua.](https://translate.wordpress.org/projects/wp-plugins/jinx-breadcrumbs)

### Ti interessa lo sviluppo?

[Esplora il codice](https://plugins.trac.wordpress.org/browser/jinx-breadcrumbs/)
segui il [repository SVN](https://plugins.svn.wordpress.org/jinx-breadcrumbs/), 
segui il [log delle modifiche](https://plugins.trac.wordpress.org/log/jinx-breadcrumbs/)
tramite [RSS](https://plugins.trac.wordpress.org/log/jinx-breadcrumbs/?limit=100&mode=stop_on_copy&format=rss).

## Meta

 *  Versione **0.2.11**
 *  Ultimo aggiornamento **5 anni fa**
 *  Installazioni attive **Meno di 10**
 *  Versione WordPress ** 5.0 o superiore **
 *  Testato fino alla versione **5.5.18**
 *  Versione PHP ** 7.1 o superiore **
 *  Lingua
 * [English (US)](https://wordpress.org/plugins/jinx-breadcrumbs/)
 * Tag
 * [breadcrumbs](https://it.wordpress.org/plugins/tags/breadcrumbs/)[seo](https://it.wordpress.org/plugins/tags/seo/)
 *  [Visualizzazione avanzata](https://it.wordpress.org/plugins/jinx-breadcrumbs/advanced/)

## Valutazioni

Non sono state ancora inviate recensioni.

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

[Vedi tutte le recensioni](https://wordpress.org/support/plugin/jinx-breadcrumbs/reviews/)

## Collaboratori

 *   [ Lukas Rydygel ](https://profiles.wordpress.org/lugat/)

## Supporto

Hai qualcosa da dire? Ti serve aiuto?

 [Chiedi nel forum di supporto](https://wordpress.org/support/plugin/jinx-breadcrumbs/)