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.

Multiple Rich Editors

Beschrijving

This plugin allows developers to easily register addition rich editors and retrieve / display the content entered within.

Installatie

  1. Upload multiple-rich-editors to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Register new rich editors using add_theme_support and use the provided template tags to retrieve and display the data you need

FAQ

How do I add a rich editor?

Easy! In your theme’s functions.php file, add the following code:

function register_rich_editors() {     add_theme_support('multiple-rich-editors', array(         'additional-editor' => array(             'label' => __('Additional Editor'),             'post_types' => array('post'),             'wp_editor' => array('media_buttons' => true),         ),         'additional-editor-2' => array(             'label' => __('Additional Editor 2'),             'post_types' => array('post', 'page'),             'wp_editor' => array('media_buttons' => false),         ),     )); } add_action('after_setup_theme', 'register_rich_editors'); 

Feel free to provide whatever values you need.

How do I know what I should provide when registering a rich editor?

Easy! Just take a look at the /lib/template-tags.php – there are detailed
instructions in there on how to register editors and use the template
tags to get the data you need.

My content loses the paragraphs that are specified in the editor. What do I do?

Multiple Rich Editors doesn’t apply the default WordPress content filters on its content by default. However, there is a code snippet in /lib/template-tags.php that explains how to do this. Follow the directions there and you should be good to go!

Beoordelingen

Er zijn geen beoordelingen voor deze plugin.

Bijdragers & ontwikkelaars

“Multiple Rich Editors” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “Multiple Rich Editors” 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.0

  • Initial release