Title: Facebook Comment Count Refresh
Last modified: August 20, 2016

---

# Facebook Comment Count Refresh

 *  [Satiro](https://wordpress.org/support/users/satiro/)
 * (@satiro)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/facebook-comment-count/)
 * Hi,
    I’ve implemented facebook comments count with the traditional wordpress 
   comments count, but unlike it the count dosen’t refresh after the comment submission.
 * I’ve used this function to do it:
 *     ```
       // Get combined FB and WordPress comment count
       function full_comment_count() {
       	global $post;
       	$url = get_permalink($post->ID);
       	$filecontent = file_get_contents('https://graph.facebook.com/?ids=' . $url);
       	$json = json_decode($filecontent);
       	$count = $json->$url->comments;
       	$wpCount = get_comments_number();
       	$realCount = $count + $wpCount;
       	if ($realCount == 0 || !isset($realCount)) {
       		$realCount = 0;
       	}
       return $realCount;
       }
       ```
   
 * What can I do? Thanks in advance!
 * [http://wordpress.org/extend/plugins/wp-super-cache/](http://wordpress.org/extend/plugins/wp-super-cache/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [jeffqc](https://wordpress.org/support/users/jeffqc/)
 * (@jeffqc)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/facebook-comment-count/#post-3251591)
 * where di you put that function?
 *  Thread Starter [Satiro](https://wordpress.org/support/users/satiro/)
 * (@satiro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/facebook-comment-count/#post-3251592)
 * I solved with an ajax call

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Facebook Comment Count Refresh’ is closed to new replies.

 * ![](https://ps.w.org/wp-super-cache/assets/icon-256x256.png?rev=3506220)
 * [WP Super Cache](https://wordpress.org/plugins/wp-super-cache/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-super-cache/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-super-cache/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-super-cache/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-super-cache/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-super-cache/reviews/)

## Tags

 * [cache](https://wordpress.org/support/topic-tag/cache/)
 * [comment](https://wordpress.org/support/topic-tag/comment/)
 * [count](https://wordpress.org/support/topic-tag/count/)

 * 2 replies
 * 2 participants
 * Last reply from: [Satiro](https://wordpress.org/support/users/satiro/)
 * Last activity: [12 years, 7 months ago](https://wordpress.org/support/topic/facebook-comment-count/#post-3251592)
 * Status: not resolved