2012-12-13 49 views
0

試圖讓我的「喜歡」按鈕鏈接到Wordpress附加圖片的URL。Facebook的「喜歡」圖像按鈕

是否有可能「喜歡」只是一個圖像文件?

這裏就是我有

<?php $large_image_url = wp_get_attachment_url(get_post_thumbnail_id(), 'large'); ?> 

<div class="likeButton" style="float: left;"><iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo urlencode($large_image_url); ?>&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:100px; height:25px"></iframe></div> 

螢火蟲顯示它的鏈接,但按像yileds沒有結果我的FB。 Hewlp!

回答

0

見我的答案在這裏:Like Button counts the likes of a PDF but does not actually post the activity?

你可以不喜歡一個文件直接,因爲該文件將不會成爲Facebook的使用,以顯示「喜歡」故事中的元數據 - 你需要像HTML URL,然後包括該網址上的圖像(或將除Facebook的抓取工具以外的用戶重定向到圖像)

+0

謝謝您的及時和富有洞察力的答案先生。 –