S
by ibericode
5 (68 reviews)
Social Sharing (by Danny)
Adds social sharing buttons for Twitter, Facebook and LinkedIn to your blog posts or pages.
Tested up to WP 6.6 (Current: 6.9)
v1.3.9
Current Version v1.3.9
Updated 1 year ago
Last Update on 16 Oct, 2024
Synced 16 hours ago
Last Synced on
Rank
#4,409
-1 this week
Active Installs
3K+
-2.4%
KW Avg Position
N/A
—
No change
Downloads
117.1K
+4 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(68 reviews)
Next Milestone 4K
3K+
4K+
576
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 982 more installs to reach 4K+
Rank Changes
Current
#4,409
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
68 reviews
Overall
100%
5
66
(97%)
4
2
(3%)
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
- 1.3.9
- Last Updated
- Oct 16, 2024
- Requires WP
- 3.7+
- Tested Up To
- 6.6
- PHP Version
- 7.2 or higher
- Author
- ibericode
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 68
- 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,735
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Popup Builder - Create highly converting, mobile friendly marketing popups.
200K+ installs
#259
The SEO Framework – Fast, Automated, Effortless.
200K+ installs
#274
The Ultimate Video Player For WordPress - by Presto Player
100K+ installs
#319
Frequently Asked Questions
Common questions about Social Sharing (by Danny)
[dvk_social_sharing]
<?php echo dvk_social_sharing(); ?>
I want more control over when to show the sharing options
Use the dvkss_display filter to show the links in more places.
Example 1: will add the sharing links to everything possible
add_filter('dvkss_display', '__return_true');
Example 2: will add the sharing links to all single posts, pages and other post types.
function my_display_condition() {
return is_singular();
}
add_filter('dvkss_display', 'my_display_condition');
Shortcode and function arguments
element (string)
The element to use as the wrapping element. Defaults to p, a paragraph element.
twitter_username (string)
The Twitter username to add to tweets. This will override the value from the settings page.
social_options (comma separated string)
The social media buttons to show. You can also use this to change the order of the buttons. Defaults to twitter, facebook, googleplus, which are the only 3 possible values.
before_text (string)
The text to show before the links. This will override the value in the settings page.
twitter_text (string)
facebook_text (string)
googleplus_text (string)
linkedin_text (string)
The texts for the different links. Defaults to the string set in the translation file.
I want more control over when to show the sharing options
Use the dvkss_display filter to show the links in more places.
Example 1: will add the sharing links to everything possible
add_filter('dvkss_display', '__return_true');
Example 2: will add the sharing links to all single posts, pages and other post types.
function my_display_condition() {
return is_singular();
}
add_filter('dvkss_display', 'my_display_condition');
Shortcode and function arguments
element (string)
The element to use as the wrapping element. Defaults to p, a paragraph element.
twitter_username (string)
The Twitter username to add to tweets. This will override the value from the settings page.
social_options (comma separated string)
The social media buttons to show. You can also use this to change the order of the buttons. Defaults to twitter, facebook, googleplus, which are the only 3 possible values.
before_text (string)
The text to show before the links. This will override the value in the settings page.
twitter_text (string)
facebook_text (string)
googleplus_text (string)
linkedin_text (string)
The texts for the different links. Defaults to the string set in the translation file.