Pinit Share无效

时间:2014-07-02 05:59:48

标签: php html wordpress share

我jus添加了一个pinit分享按钮来固定帖子中的图像。这是URL

<!--Pin It-->
    <a href="http://pinterest.com/pin/create/button/?url=<?php the_permalink(); ?>"     class="pinit" title="Share this post on Pinterset!" target="_blank"></a>  

当我点击它时,它会引导我进入网站。当我点击pinit它显示以下错误

您需要上传图片或提供&#39; image_url&#39;参数

我不知道自己做错了什么。请帮忙!!谢谢!!

1 个答案:

答案 0 :(得分:1)

pinterest需要你传递媒体段, 好像 http://pinterest.com/pin/create/button/?url=YOUR_PAGE_URL&media=YOUR_IMGAGE_URL

你可以通过以下方式获得发布缩略图:

    <?php echo wp_get_attachment_url( get_post_thumbnail_id($post->ID) );?>