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

Deze plugin is niet getest met de laatste 3 grotere versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Ook kunnen er compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

Carbon Breadcrumbs

Beschrijving

Provides the theme and plugin developers an easy way to build and implement highly customizable breadcrumb functionality, specifically tailored to their needs.
Supports a lot of filters and hooks, and is written in OOP style, giving developers full control over the breadcrumb trail items and appearance.
This plugin can also be embedded in themes, instead of installing it as a WordPress plugin.

Instellingen

The most basic way to insert Carbon Breadcrumbs in your theme code is:

<?php Carbon_Breadcrumb_Trail::output(); ?> 

If you want to specify various breadcrumb rendering options, you can specify them in an array, like this:

<?php Carbon_Breadcrumb_Trail::output(array(     'glue' => ' &gt; ', // glue between breadcrumb items     'link_before' => '',     'link_after' => '',     'wrapper_before' => '',     'wrapper_after' => '',     'title_before' => '',     'title_after' => '',     'min_items' => 2,     'last_item_link' => true,     'display_home_item' => true,     'home_item_title' => __('Home', 'carbon_breadcrumbs'),     'renderer' => 'Carbon_Breadcrumb_Trail_Renderer', )); ?> 

For additional configuration and developer documentation, you can visit the Github repository:

https://github.com/tyxla/carbon-breadcrumbs

Ideas and bug reports

Any ideas for new modules or any other additional functionality that users would benefit from are welcome.

If you have an idea for a new feature, or you want to report a bug, feel free to do it here in the Support tab, or you can do it at the Github repository of the project:

https://github.com/tyxla/carbon-breadcrumbs

Installatie

  1. Install Carbon Breadcrumbs either via the WordPress.org plugin directory, or by uploading the files to your server.
  2. Activeer de plugin.
  3. That’s it. You’re ready to go! Please, refer to the Configuration section for examples and usage information.

Beoordelingen

17 oktober 2017
GREAT plugin, fantastic codebase: super clean & TESTED?! FTW! Only downside is no schematagging out of the box :/. This is a pivotal SEO feature and I think this would greatly boost interest in your plugin. Info: https://developers.google.com/search/docs/data-types/breadcrumbs#guidelines Result should look like: <ol ="http://schema.org/BreadcrumbList"> <li ="itemListElement" ="http://schema.org/ListItem"> <a ="http://schema.org/WebPage" ="item" href="link.html"> <span ="name">Crumb 1</span> </a> <meta ="position" content="1" /> / </li> <li ="itemListElement" ="http://schema.org/ListItem"> <a ="http://schema.org/WebPage" ="item" href="link2.html"> <span ="name">Crumb 2</span> </a> <meta ="position" content="2" /> </li> </ol> Here’s how I’ve shimmed it in: <?php $breadcrumbs = new Carbon_Breadcrumb_Trail(array( 'glue' => ' / ', 'link_before' => '<li ="itemListElement" ="http://schema.org/ListItem">', 'link_after' => '</li>', 'wrapper_before' => '<ol class="breadcrumbs" ="http://schema.org/BreadcrumbList">', 'wrapper_after' => '</ol>', 'title_before' => '<span ="name">', 'title_after' => '</span>', )); $breadcrumbs->setup(); echo $breadcrumbs->render(true); // WP_KSES strips , , etc, so bypassing!!! add_filter('carbon_breadcrumbs_item_attributes', _'breadcrumb_schematags', 10, 2); function breadcrumb_schematags($attributes, $item) { if (!is_array($attributes)) $attributes = array(); $attributes[''] = null; $attributes[''] = 'http://schema.org/WebPage'; $attributes[''] = 'item'; return $attributes; } add_filter('carbon_breadcrumbs_item_output', 'breadcrumb_item_position', 10, 5); function breadcrumb_item_position($item_output, $item, $trail, $trail_renderer, $index){ // Add Position $n = strrpos($item_output, '</li>'); $item_output = substr($item_output, 0, $n) . '<meta ="position" content="'. $index .'" />' . substr($item_output, $n); return $item_output; }
3 september 2016
This remains the best breadcrumbs plugin I’ve used. In addition to its rich customization options, it provides developers with various easy ways to extend it.
24 december 2016
This plugin has saved me quite some time. Thanks to the numerous filters, you can adjust everything. Respect <3
Lees alle 4 beoordelingen

Bijdragers & ontwikkelaars

“Carbon Breadcrumbs” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “Carbon Breadcrumbs” 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.2

Tested with WordPress 4.5.

1.0.1

Add some .gitattributes to make exporting lighter.

1.0

Initial version.