T
by Niall Kennedy
4.5 (2 reviews)
Twitter Cards
Add Twitter Card markup to individual posts. Supports summary, photo, and player types.
Tested up to WP 3.5.2 (Current: 7.0)
v1.0.5
Current Version v1.0.5
Updated 13 years ago
Last Update on 03 Apr, 2013
Refreshed 3 weeks ago
Last Refreshed on
Rank
#11,070
—
No change
Active Installs
300+
—
No change
KW Avg Position
48.5
—
No change
Downloads
21.5K
+1 today
Support Resolved
0%
—
No change
Rating
90%
Review 4.5 out of 5
4.5
(2 reviews)
Next Milestone 400
300+
400+
944
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 6 more installs to reach 400+
Rank Changes
Current
#11,070
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
4.5
2 reviews
Overall
90%
5
1
(50%)
4
1
(50%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| semantic markup | 33 | — | Tag | 3 weeks ago |
| twitter cards | 64 | — | Tag | 3 weeks ago |
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
- 1.0.5
- Last Updated
- Apr 03, 2013
- Requires WP
- 3.3+
- Tested Up To
- 3.5.2
- PHP Version
- N/A
- Author
- Niall Kennedy
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.5
- Reviews
- 2
- 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,707
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#964
Nextend Social Login and Register
200K+ installs
#256
Firelight Lightbox
200K+ installs
#259
Popup Builder – Create highly converting, mobile friendly marketing popups.
200K+ installs
#262
Frequently Asked Questions
Common questions about Twitter Cards
I wrote this plugin for my own site, NiallKennedy.com, added some slight flexibility through filters, and released the plugin on GitHub as a PHP library with a WordPress plugin wrapper. I use summary cards for my site's articles. If you would like to add better support for photos, galleries, videos, apps, or products exposed to Twitter you can fork my work and optionally send some code in a pull request.
First you need to hook into the filter from code in your theme or site plugin(s). You can add this code to your theme's functions.php file or create a new file in wp-content/mu-plugins/twitter-cards.php or something similar. add_filter( 'twitter_cards_properties', 'twitter_custom' ); Next you need to modify the array passed to the filter with your own values. function twitter_custom( $twitter_card ) { if ( is_array( $twitter_card ) ) { $twitter_card['creator'] = '@niall'; $twitter_card['creator:id'] = '1085'; } return $twitter_card; } The values generated by the plugin are passed to your new function for manipulation before output. The Twitter API function users/show is a good way to lookup your account information. Copy the screen_name and id_str to creator and creator:id array values respectively in your filter function referenced above. https://api.twitter.com/1/users/show.json?screen_name=niall Your Twitter screenname may change but your Twitter ID will remain the same. Grab both while you are setting up your site to provide Twitter with the best data. You forgot to include a trailing slash on meta elements The plugin outputs HTML-style void elements without a trailing slash by default. Add XML-style trailing slashes by returning a value of xml on the twitter_cards_htmlxml filter.