我想追加Facebook的按鈕到我的博客上的每個帖子。我已經設法得到我需要的任何東西來添加像按鈕,我需要的唯一東西是,我如何訪問功能author_bio_display($content)
內的當前帖子鏈接,即在rawurlencode('post permalink goes here')
的地方?獲取WordPress的帖子的固定鏈接
function author_bio_display($content)
{
$bio_box = '<iframe src="http://www.facebook.com/plugins/like.php?href='. rawurlencode('post permalink goes here') .'&layout=standard&show-faces=true&width=450&action=like&font=arial&colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" id="facebook-like"></iframe>';
return $content . $bio_box;
}
add_action("the_content", "author_bio_display");