Polymer for WordPress
by Mat 5 (3 reviews)

Polymer for WordPress

Add Polymer v0.5 to your website

Polymer for WordPress ranks #43,449 among WordPress.org plugins with 10+ active installations, is #3,678 of 8,578 in the Customization category, a 5/5 rating from 3 reviews, and was last updated Nov 19, 2015. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 4 (Current: 7.1.2)
vtrunk Current Version vtrunk
Updated 10 years ago Last Update on 19 Nov, 2015
Refreshed 11 hours ago Last Refreshed on
#3,678 of 8,578 in Customization Top 50% by installs No update in over a year
View on WordPress.org
Rank
#43,449
-12861 this week
Active Installs
10+
-23.1%
KW Avg Position
N/A
No change
Downloads
4.5K
+1 today
Support Resolved
0%
No change
Rating
100%
Review 5 out of 5
5 (3 reviews)

Next Milestone 20

Total Progress 20%
10+ 20+
41,428
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 8 more installs to reach 20+

Rank Changes

36,998 39,208 41,419 43,629 45,839 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026
36,831 39,403 41,975 44,546 47,118 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026
Current #43,449
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026
0 10 20 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

5.0
3 reviews
Overall 100%
5
3 (100%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Frequently Asked Questions

Common questions about Polymer for WordPress

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) {
}); });
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.
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>
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(); });

More plugins by Mat

Sign In / Register

You need to sign in or register to use this feature.