Get total social share count (Facebook, Twitter, Google+. Pinterest)
I'm pulling the individual share counts for the social media I've mentioned using the following code snippet in my theme's function.php:
$facebook_like_share_count = function ( $url ) {
$api = file_get_contents( 'http://graph.facebook.com/?id=' . $url );
$count = json_decode( $api );
return $count-shares;
};
$twitter_tweet_count = function ( $url ) {
$api = file_get_contents( 'https://cdn.api.twitter.com/1/urls/count.json?url=' . $url );
$count = json_decode( $api );
return $count-count;
};
$pinterest_pins = function ( $url ) {
$api = file_get_contents( 'http://api.pinterest.com/v1/urls/count.json?callback%20url=' . $url );
$body = preg_replace( '/^receiveCount\((.*)\)$/', '\\1', $api );
$count = json_decode( $body );
return $count-count;
};
$google_plusones = function ( $url ) {
$curl = curl_init();
curl_setopt( $curl, CURLOPT_URL, "https://clients6.google.com/rpc" );
curl_setopt( $curl, CURLOPT_POST, 1 );
curl_setopt( $curl, CURLOPT_POSTFIELDS, '[{"method":"pos.plusones.get","id":"p","params":{"nolog":true,"id":"' . $url . '","source":"widget","userId":"@viewer","groupId":"@self"},"jsonrpc":"2.0","key":"p","apiVersion":"v1"}]' );
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $curl, CURLOPT_HTTPHEADER, array( 'Content-type: application/json' ) );
$curl_results = curl_exec( $curl );
curl_close( $curl );
$json = json_decode( $curl_results, true );
return intval( $json[0]['result']['metadata']['globalCounts']['count'] );
};
I'm calling them into my single.php with the following code:
?php $url = get_permalink( $post_id ); echo $facebook_like_share_count ("$url");?
?php $url = get_permalink( $post_id ); echo $twitter_tweet_count ("$url");?
?php $url = get_permalink( $post_id ); echo $pinterest_pins ("$url");?
?php $url = get_permalink( $post_id ); echo $google_plusones ("$url");?
This works fine.
Now, I'm trying to find a code snippet that will add the share count of those 4 services and shows the total share count - probably something similar to this here.
EDIT: I have an important question.
Is it possible that the code above is slowing down my blog?
I've already contacted my hosting service and they told me it must be something like a plugin or php files. I haven't really updated any plugins recently and P3 Profilier just tells me who the usual culprits are. But I noticed right after calling that function in my single.php my server sometimes loads super slow - even gets timeouts on speed checking sites. Any ideas?
EDIT2: After a lot of testing it really seems to be this code (when echoed) that slows down the page. shrugs Guess I have to stop using it?
I haven't been able to get it to work yet. I hope you can help me out here. Thank you so much!
Topic social-sharing Wordpress
Category Web