2017-04-14 72 views
-2

我有一個functions.php的循環,從我的wordpress網站如何實現Facebook的評論系統與WordPress的functions.php

顯示的帖子,當我嘗試Facebook的意見整合,我到的functions.php,他們不會添加某種原因

我包括Facebook的劇本太在functions.php中沒有成功

如何進行?

+0

請分享你已經試過的代碼。 –

+0

在functions.php我已經包括了腳本和評論代碼由Facebook評論 –

+0

您是否嘗試使用任何插件的Facebook評論? – Prabu

回答

1

步驟1

pasete下面的代碼標籤後的header.php

<div id="fb-root"></div> 
    <script>(function(d, s, id) { 
    var js, fjs = d.getElementsByTagName(s)[0]; 
    if (d.getElementById(id)) return; 
    js = d.createElement(s); js.id = id; 
    js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.8"; 
    fjs.parentNode.insertBefore(js, fjs); 
    }(document, 'script', 'facebook-jssdk'));</script> 

第2步:

粘貼下面的代碼要apear如單Facebook的評論。 php

<div class="fb-comments" data-href="<?php the_permalink(); ?>" data-width="100%" data-numposts="10" data-order-by="social" data-colorscheme="light"></div> 

希望它能爲你工作。

+0

如何在functions.php中做到這一點? –

+0

查看截圖在這裏http://prntscr.com/ewaccy –

+0

它正在與single.php但不能與functions.php –