P
by zviryatko
5 (2 reviews)
Post Share Count
Show twitter and facebook share count.
Tested up to WP 3.6.1 (Current: 6.9.4)
v0.5.1
Current Version v0.5.1
Updated 11 years ago
Last Update on 02 Feb, 2015
Refreshed 6 hours ago
Last Refreshed on
Rank
#28,050
—
No change
Active Installs
10+
—
No change
KW Avg Position
N/A
—
No change
Downloads
3.5K
+1 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(2 reviews)
Next Milestone 20
10+
20+
6,115
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 3 more installs to reach 20+
Rank Changes
Current
#28,050
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
2 reviews
Overall
100%
5
2
(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
- 0.5.1
- Last Updated
- Feb 02, 2015
- Requires WP
- 3.0+
- Tested Up To
- 3.6.1
- PHP Version
- N/A
- Author
- zviryatko
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 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,711
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#953
Header and Footer Scripts
200K+ installs
#258
Post Views Counter
200K+ installs
#274
SEO SIMPLE PACK
100K+ installs
#322
Frequently Asked Questions
Common questions about Post Share Count
Use array as argument with keys before_ and after_ prefix and social link name, here is example how to add @via parameter twitter sharing link: <?php $share_args = array( 'before_twitter' => '<span class="share-link"><a href="https://twitter.com/intent/tweet?text=' . urlencode(get_the_title()) . '&url=' . urlencode(get_permalink()) . '&via=' . urlencode('your-twitter-name') . '" rel="nofollow" target="_blank"><span class="genericon genericon-twitter"></span> ', 'after_twitter' => '</a></span>', ); the_post_share_count( $share_args ); ?> Also you can add changes to functions.php: function your_theme_post_share_count_services( $services ) { $services['twitter']['before'] = ' '; return $services; } add_filter('post_share_count_services', 'your_theme_post_share_count_services');
Add show_only parameter: array( 'twitter', 'facebook' )); the_post_share_count($args); ?> Also you can do it in functions.php: function your_theme_post_share_count_services( $services ) { unset( $services['facebook'] ); unset( $services['pinterest'] ); unset( $services['googleplus'] ); unset( $services['linkedin'] ); return $services; } add_filter('post_share_count_services', 'your_theme_post_share_count_services');