S
by Danny van Kooten
5 (68 reviews)
Social Sharing (by Danny)
Adds social sharing buttons for Twitter, Facebook and LinkedIn to your blog posts or pages.
Compatible with WP 6.9
v1.3.10
Current Version v1.3.10
Updated 1 month ago
Last Update on 13 Feb, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#4,471
—
No change
Active Installs
2K+
—
No change
KW Avg Position
N/A
—
No change
Downloads
119.9K
+6 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(68 reviews)
Next Milestone 3K
2K+
3K+
93
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 93 more installs to reach 3K+
Rank Changes
Current
#4,471
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.10
- Last Updated
- Feb 13, 2026
- Requires WP
- 3.7+
- Tested Up To
- 6.9
- PHP Version
- 7.2 or higher
- Author
- Danny van Kooten
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,715
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#953
Nextend Social Login and Register
200K+ installs
#256
Firelight Lightbox
200K+ installs
#257
Popup Builder – Create highly converting, mobile friendly marketing popups.
200K+ installs
#263
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.