by Mattia Roccoberton
5 (3 reviews)
Polymer for WordPress
Add Polymer v0.5 to your website
Tested up to WP 4 (Current: 6.9.1)
vtrunk
Current Version vtrunk
Updated 10 years ago
Last Update on 19 Nov, 2015
Refreshed 6 hours ago
Last Refreshed on
Rank
#38,060
—
No change
Active Installs
10+
-9.1%
KW Avg Position
N/A
—
No change
Downloads
4.4K
+1 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(3 reviews)
Next Milestone 20
10+
20+
12,790
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
Need 7 more installs to reach 20+
Rank Changes
Current
#38,060
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
3 reviews
Overall
100%
5
3
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- trunk
- Last Updated
- Nov 19, 2015
- Requires WP
- 3.5.0+
- Tested Up To
- 4
- PHP Version
- N/A
- Author
- Mattia Roccoberton
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 3
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,730
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
30K+ installs
#938
Qi Addons For Elementor
200K+ installs
#254
MW
MW WP Form
200K+ installs
#263
WPFront Scroll Top
200K+ installs
#269
Frequently Asked Questions
Common questions about Polymer for WordPress
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>
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>
<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();
});
<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();
});