2013-06-21 73 views
0

,我有以下過濾器的功能添加到帖子內容:WordPress的add_filer到the_content

function hook_shrinkshare($content){ 

if(is_single()) { 

    $content.= get_social_share(); 
    return $content; 
}} 

add_filter('the_content', 'hook_shrinkshare' ,'100'); 

我想上面要添加到原帖內容的底部。出於某種原因,它將其添加到上面。

有人可以指點我正確的方向嗎?

回答

0

是否將$content傳遞給函數null/empty? 試試這個:

add_filter('the_content', 'hook_shrinkshare' ,'100', 1); 

這使過濾器知道該函數有一個參數。

+0

no $ content不爲空。我已經嘗試了以上。它仍然顯示在內容之上。 – danyo

+0

我不確定內容是什麼。你認爲可能在HTML或CSS的原因? – abhinav

+0

的內容是the_content(); – danyo

相關問題