Want to display how many times your post has been shared on Facebook, Twitter and Google+? This is what the snippet below will do for you. Paste it where you want the count to be displayed, within the loop.
function social_shares() {
$url = get_permalink( $post_id );
$json = file_get_contents("http://api.sharedcount.com/?url=" .
rawurlencode($url));
$counts = json_decode($json, true);
$totalcounts= $counts["Twitter"] +
$counts["Facebook"]["total_count"] +
$counts["GooglePlusOne"];
echo "<div>$totalcounts Share</div>";
}