It is best practice to display counts of current subscribers to your various social and distribution media, and while
all of the popular services offer proprietary counters, having a small army of buttons and counters on your site
looks unprofessional, cluttered, and detracts from your design.
This plugin solves that problem by drawing from Feedburner, Twitter, and Facebook to calculate a single total count
of all your subscribers across those services. Of course, if you don't use all of them, you can simply call just the
subscribers of the service(s) you do use without breaking the result. Whatever the total count, the output is a text
format number that you can include anywhere on your site with a shortcode.
- Upload the
/total-social-followers/
directory to the /wp-content/plugins/
directory
- Activate the plugin through the 'Plugins' menu in WordPress
- Use the following shortcode wherever you would like to display the count:
[total-social-followers facebook="your Facebook username/ID" feedburner="your Feedburner name" twitter="your Twitter username"]
For example, if your Facebook page URL was
http://www.facebook.com/MyWebSite, your Feedburner URL was
http://feeds.feedburner.com/MyWebSiteFeed, and your Twitter URL was
http://www.twitter.com/MyTwitter, your
shortcode would look like this:
[total-social-followers facebook="MyWebSite" feedburner="MyWebSiteFeed" twitter="MyTwitter"]
1. You can also include the count in your template files with the following PHP snippet containing the shortcode:
<?php echo do_shortcode('[total-social-followers facebook="[...]" feedburner="[...]" twitter="[..]"]'); ?>
1.0
First stable version.