Title: Polymer for WordPress
Author: Mat
Published: <strong>29 oktober 2014</strong>
Last modified: 19 november 2015

---

Plugins zoeken

![](https://ps.w.org/polymer-components/assets/banner-772x250.png?rev=1289490)

Deze plugin **is niet getest met de laatste drie grote versies van WordPress**. 
Mogelijk wordt het niet meer onderhouden of ondersteund. Er kunnen ook compatibiliteitsproblemen
ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

![](https://ps.w.org/polymer-components/assets/icon-256x256.png?rev=1289490)

# Polymer for WordPress

 Door [Mat](https://profiles.wordpress.org/blocknotes/)

[Download](https://downloads.wordpress.org/plugin/polymer-components.zip)

 * [Details](https://nl-be.wordpress.org/plugins/polymer-components/#description)
 * [Beoordelingen](https://nl-be.wordpress.org/plugins/polymer-components/#reviews)
 *  [Installatie](https://nl-be.wordpress.org/plugins/polymer-components/#installation)
 * [Ontwikkeling](https://nl-be.wordpress.org/plugins/polymer-components/#developers)

 [Ondersteuning](https://wordpress.org/support/plugin/polymer-components/)

## Beschrijving

A completely new version of this plugin is available and it allows to use the latest
Polymer components: [WP Polymer](https://wordpress.org/plugins/wp-polymer/)

This plugin allows to add Polymer elements (v0.5) to your posts and pages, the same
components used in Android Lollipop. You can use the HTML editor with the Polymer
tags directly or the shortcode _[poly]_ for all the elements. The correct HTML libraries
will be loaded automatically.
 Polymer website: http://www.polymer-project.org/

Notice: Polymer is still in _developer_ _preview_, some constructs may change in
future. A modern browser is required to run Polymer web apps.

**Features**

 * Polymer tags directly available (core & paper) in posts / pages with the HTML
   editor;
 * [poly] shortcode to access all tags;
 * simple widget;
 * auto import the necessary HTML components;
 * code blocks to easily manage elements;
 * Javascript editor in posts / pages admin;
 * CSS editor in posts / pages admin;
 * import iconsets options;
 * autop on/off option;
 * template override on/off option;
 * documentation links for each tag.

**Shortcode**

[poly ELEMENT-TAG ELEMENT-OPTIONS]

Tags: core-icon, paper-button, paper-checkbox, paper-slider, etc.

Options: style, id, class, etc.

**Examples**

    ```
    [poly core-icon icon="favorite"][/poly]
    [poly paper-checkbox][/poly]
    [poly paper-button raised style="color: green"]A green button[/poly]
    [poly paper-item icon="home" label="Test link"]<a href="http://www.google.it" target="_blank"></a>[/poly]
    ```

**Notes**

 * code blocks allows to create elements and import them directly from the Polymer
   box in posts / pages. They allows also to load JSON data, see FAQ for an example
 * autop option: the autop() WordPress function adds p and br tags to the contents
   when a newline is found, but this can break the Polymer tags. This option allows
   to enable/disable autop() in posts / pages (plugin default: no autop)
 * template override option: if this option is enabled this plugin will load a special
   template which provides only the required components to run a Polymer app. This
   is useful if you want a “fullscreen” Polymer app
 * to create RESTful apps try _JSON REST API (WP API)_ plugin. See FAQ for an example

## Schermafbeeldingen

 * [[
 * Some Polymer elements in a post
 * [[
 * Post editor in admin
 * [[
 * Polymer Components meta box in post / page editor
 * [[
 * Scaffold test
 * [[
 * A custom element

## Installatie

 1. Install the plugin
 2. Activate it
 3. Edit a post or a page
 4. Use the shortcode to add Polymer elements and/or add directly Polymer tags (in 
    the HTML editor)

## FAQ

  How can I interact with the Polymer elements?

You can add your Javascript code for your page or post in the Javascript editor 
under the content editor – Polymer Components meta box.
 Sample code to open a dialog
from a button click:

    ```
    window.addEventListener('polymer-ready', function(e) {
      document.querySelector('#btn_test').addEventListener('click', function(e) {
        document.querySelector('#my-dialog').toggle();
      });
    });
    ```

  Can I create my elements?

Yes, you can create a Block with an element and them import it from the Polymer 
box in posts / pages; with the SHIFT key you can select more than a block to import.
You can also use the _polymer-element_ tag in posts and pages also with script tags.

  How can I load JSON data from Blocks?

You can create a Block with directly the JSON data, then in a post you can reference
it using the shortcode _block-url_ with the slug of the Block.
 Example:

    ```
    <core-ajax url="[block-url name='json-block-slug']" handleAs="json"></core-ajax>
    ```

  Is it possible to work with JSON REST API plugin?

Sure. Here is an example that create a pages menu dinamically. Post content:

    ```
    <core-ajax url="/wordpress/wp-json/pages" handleAs="json"></core-ajax>
    <paper-dropdown-menu label="Pages">
      <paper-dropdown class="dropdown">
        <core-menu class="menu">
          <template id="menu" repeat="{{ pages }}">
            <paper-item noink><a href="{{slug}}">{{title}}</a></paper-item>
          </template>
        </core-menu>
      </paper-dropdown>
    </paper-dropdown-menu>
    ```

Javascript content:

    ```
    window.addEventListener('polymer-ready', function(e) {
      var ajax = document.querySelector('core-ajax');
      var menu = document.querySelector('#menu');
      ajax.addEventListener('core-response', function(e) {
        var model = {
          pages: this.response
        };
        menu.model = model;
      });
      ajax.go();
    });
    ```

## Beoordelingen

Er zijn geen beoordelingen voor deze plugin.

## Bijdragers & ontwikkelaars

“Polymer for WordPress” is open source software. De volgende personen hebben bijgedragen
aan deze plugin.

Bijdragers

 *   [ Mat ](https://profiles.wordpress.org/blocknotes/)

[Vertaal “Polymer for WordPress” naar jouw taal.](https://translate.wordpress.org/projects/wp-plugins/polymer-components)

### Interesse in de ontwikkeling?

[Bekijk de code](https://plugins.trac.wordpress.org/browser/polymer-components/),
haal de [SVN repository](https://plugins.svn.wordpress.org/polymer-components/) 
op, of abonneer je op het [ontwikkellog](https://plugins.trac.wordpress.org/log/polymer-components/)
via [RSS](https://plugins.trac.wordpress.org/log/polymer-components/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.4.4

 * Updated Polymer to 0.5.2

#### 1.4.2

 * Fix to blocks imports

#### 1.4.1

 * Security fix for meta box

#### 1.4.0

 * New feature: Blocks of code
 * New shortcode: block-url

#### 1.3.2

 * New tags enabled
 * Small fix to docs links

#### 1.3.0

 * Updated Polymer to 0.5.1

#### 1.2.8

 * New setting: CSS editor on/off
 * Small fix

#### 1.2.5

 * New CSS editor for posts / pages
 * New options: autop, override template
 * Internal improvements

#### 1.2.0

 * New widget
 * Auto-import improved
 * Small fix to JS editor

#### 1.1.2

 * Small fix and changes to settings

#### 1.1.0

 * New settings screen
 * New settings: JS in posts / pages
 * Improved Javascript editor
 * Added polymer-element tag

#### 1.0.6

 * New Javascript editor for posts / pages

#### 1.0.2

 * Small fix for admin docs

#### 1.0.0

 * First release

## Meta

 *  Versie **1.4.4**
 *  Laatst bijgewerkt: **10 jaar geleden**
 *  Actieve installaties: **10+**
 *  WordPress versie ** 3.5.0 of nieuwer **
 *  Getest t/m **4.0.38**
 *  Taal
 * [English (US)](https://wordpress.org/plugins/polymer-components/)
 * Tags
 * [google](https://nl-be.wordpress.org/plugins/tags/google/)[page](https://nl-be.wordpress.org/plugins/tags/page/)
   [posts](https://nl-be.wordpress.org/plugins/tags/posts/)[shortcode](https://nl-be.wordpress.org/plugins/tags/shortcode/)
 *  [Geavanceerde weergave](https://nl-be.wordpress.org/plugins/polymer-components/advanced/)

## Beoordelingen

 5 van 5 sterren.

 *  [  3 5 sterren beoordeling     ](https://wordpress.org/support/plugin/polymer-components/reviews/?filter=5)
 *  [  0 4 sterren beoordeling     ](https://wordpress.org/support/plugin/polymer-components/reviews/?filter=4)
 *  [  0 3 sterren beoordeling     ](https://wordpress.org/support/plugin/polymer-components/reviews/?filter=3)
 *  [  0 2 sterren beoordeling     ](https://wordpress.org/support/plugin/polymer-components/reviews/?filter=2)
 *  [  0 1 sterren beoordeling     ](https://wordpress.org/support/plugin/polymer-components/reviews/?filter=1)

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

[Bekijk alle beoordelingen](https://wordpress.org/support/plugin/polymer-components/reviews/)

## Bijdragers

 *   [ Mat ](https://profiles.wordpress.org/blocknotes/)

## Ondersteuning

Iets te melden? Hulp nodig?

 [Het supportforum bekijken](https://wordpress.org/support/plugin/polymer-components/)

## Doneren

Wil je de groei van deze plugin ondersteunen?

 [ Doneer aan deze plugin ](http://www.blocknot.es/home/me/)