我正在使用Addthis
向Wordpress博客添加共享按钮。
我的自定义图标适用于Pinterest除外。
我在使用课程addthis_button_pinterest_share
时可以使用自定义图标,但在使用课程addthis_button_pinterest_pinit
时却无法使用。
在我的循环中,以下结果会提示正确共享图像,但Pinterest按钮会覆盖图标图像:
<a class="addthis_button_pinterest_pinit" pi:pinit:url="<?php the_permalink(); ?>" pi:pinit:media="<?= wp_get_attachment_url(get_post_thumbnail_id($post->ID)); ?>" pi:pinit:description="<?= get_the_excerpt();?>">
<img src="<?php bloginfo('template_url'); ?>/img/icons/social/pinterest.png" />
</a>
同时,这会导致提示从页面上的图像库(不是我指定的图像)共享,但自定义图标图像有效:
<a class="addthis_button_pinterest_share" pi:pinit:url="<?php the_permalink(); ?>" pi:pinit:media="<?= wp_get_attachment_url(get_post_thumbnail_id($post->ID)); ?>" pi:pinit:description="<?= get_the_excerpt();?>">
<img src="<?php bloginfo('template_url'); ?>/img/icons/social/pinterest.png" />
</a>
我可以使用addthis_button_pinterest_pinit
使用自定义图标,还是使用addthis_button_pinterest_share
指定要分享的特定图片?
答案 0 :(得分:0)
您可以通过Open Graph协议使用addthis_button_pinterest_share指定要共享的特定图像。尝试添加:
<meta property="og:image" content="URL to your image" />
此处还有关于addthis_button_pinterest_share http://support.addthis.com/customer/portal/articles/1300322-pinterest-image-sharing
的更多参考资料