2013-03-11 100 views
1

我在我的WordPress的網站上使用Facebook插件。我把下面的代碼迴路和single.php中頁面上顯示Facebook的評論點擊可點擊

<fb:comments-count href="<?php echo get_permalink($post->ID); ?>"></fb:comments-count> Comments 

它顯示評論數的評論數,但它不是點擊像一個正常的WP計數。我怎麼能做到這麼點擊它會鏈接到永久鏈接?

謝謝!

回答

0

我想這是你正在嘗試做的:

<a href="<?php echo the_permalink(); ?>"> 
<div class="fb-comments-count" data-href="<?php echo the_permalink(); ?>">0</div> 
comments</a> 

注意< DIV>阻止

您可能還需要添加這些共享庫的一個暫時的,然後檢查元素和查看JavaScript以查看它們究竟是如何做到的。

https://www.addthis.com/get/sharing

http://sharethis.com

參見

How to get Facebook comments count with HTML5?

<fb:comments-count> not working on my WordPress powered blog

How to get Facebook comments count with HTML5?