2012-07-24 121 views
0

我正在應用facebook評論顯示在wordpress genisis主題上的每一篇文章。我對其工作中的二十幾歲主題應用facebook評論。 但未能應用於genisis主題。 任何人都可以幫助我如何應用Facebook評論genisis主題。Facebook的評論到wordpress genisis

在此先感謝。

回答

0

如果您使用的是Genesis主題框架,您可以通過將以下代碼添加到您的Functions.php文件中,輕鬆地將Facebook評論框添加到您的單篇文章中。

function add_fb_comments() { 
    if (is_single()) { ?> 
<h3>Comment With Facebook:</h3><div id="fb-root"></div> 
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script> 
<fb:comments href="<?php the_permalink(); ?>" num_posts="20" width="600"> 
</fb:comments> 
    <?php } 
} 
add_action('genesis_after_post', 'add_fb_comments', '99'); 

希望這會對你有用。

+0

你好,我把該代碼與src =「我的鏈接」我更新function.php其不更新,現在給錯誤也網站不工作給錯誤。 – 2012-07-24 19:20:54

+0

不需要更改該代碼中的任何內容。 – Libin 2012-07-24 19:23:43

+0

但我沒有我canot訪問管理這裏是錯誤解析錯誤:語法錯誤,意想不到$ end在/home/xxxx/wp-content/themes/genesis/functions.php在線38 – 2012-07-24 19:28:03