我想使用自定义Pinterest按钮。
目前我在wordpress插件中设置了按钮图形,其中包含PHP文件中的以下行:
$pinterest_button = '<a rel="nofollow" href="http://www.pinterest.com/pin/create/button/?url='.get_permalink().'&media='.wp_get_attachment_url( get_post_thumbnail_id() ).'&description='.substr(urlencode(get_the_title()), 0, 200).'" target="_blank" title="Pin this on Pinterest"><img src="'.plugins_url('pinterest.png', __FILE__).'" width="33" /></a> ';
然后我将Pinterest JS文件加载到别处。
问题在于Pinterest JS劫持了我指定的自定义Pinterest图标(pinterest.png)并将其转换为标准的“Pin It”按钮,因此它不适合我的其余按钮。
有没有办法阻止这种情况发生?