Layout – Webdesign

0,00 / maand excl. BTW

Layout kiezen / webdesign aanpassen

Ander webdesign / layout? Dat kan hier heel gemakkelijk!

  1. Gratis: Kies één van de voor geprogrammeerde layouts.
  2. Gratis: Pas je gekozen webdesign naar wens aan.
  3. Kies hier een andere gratis layout: Gratis implementatie.
  4. Kies een andere gratis layout: Vergoeding voor implementatie.
  5. Kies een betaald thema: Vergoeding voor implementatie.
  6. Laat een layout voor je maken.

Andere Layout

Ander Webdesign

Eénmalige betaling

1. Om welk webdesign gaat het (naam)
2. Waar kunnen wij het vinden
3. Als het in een account staat, mogen wij dan inlog-gegevens opdat wij het kunnen uploaden

Het verwijderen van webdesigns bespaart webruimte. Als er een webdesign extra op je website / webshop wordt gezet, dan kost dat webruimte.

Prijs per maand

Categorie:

Beschrijving

Menu Breadcrumb

Beschrijving

Breadcrumbs are often generated from Page structure, but in a world of Custom Post Types that doesn’t always work. Menu Breadcrumb uses your WordPress Menu to generate a breadcrumb trail based on the current page.

View on GitHub!

Installatie

  1. Download menu-breadcrumb.zip and extract
  2. Upload the menu-breadcrumb folder to the /wp-content/plugins/ directory
  3. Activate the plugin through the ‘Plugins’ menu in WordPress
  4. Place <?php if ( function_exists( 'menu_breadcrumb') ) { menu_breadcrumb( 'my-menu-id' ); } ?> in your templates where you want the breadcrumb to appear

FAQ

How do I output a breadcrumb trail?

Add the following to your theme template where you would like to output the breadcrumb:

<?php     if ( function_exists( 'menu_breadcrumb') ) {         menu_breadcrumb(             'main',                             // Menu Location to use for breadcrumb             ' &raquo; ',                        // separator between each breadcrumb             '<p class="menu-breadcrumb">',      // output before the breadcrumb             '</p>'                              // output after the breadcrumb         );     } ?> 

More documentation?

Of course! https://github.com/jchristopher/menu-breadcrumb

Can I contribute?

Of course! https://github.com/jchristopher/menu-breadcrumb

Beoordelingen

3 september 2016
As I see, it works with WP 4.2.2. The Theme is being developed, so i could not find any bugs so far.
Lees alle 2 beoordelingen

Bijdragers & ontwikkelaars

“Menu Breadcrumb” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “Menu Breadcrumb” in je eigen taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

1.0.3

  • Add filter to allow custom breadcrumbs. Props benjaminpick
  • If empty breadcrumbs he shouldn’t show $before and $after. Props benjaminpick
  • Tested up to WordPress 6.9

1.0.2

  • Added a menu_breadcrumb_level property to each breadcrumb object

1.0.1

  • Fixed an issue where the Menu wasn’t properly retrieved from the location

1.0.0

  • Initial release