我正在尝试找到一个简短的代码,使我可以在我的wordpress博客中添加“Pin It”(Pinterest)文本链接。我只想要一个文本链接。我不想使用它们为其提供代码的图形按钮,这使得此操作很棘手。
使用Facebook和Twitter非常简单。例如:
<a href="http://www.facebook.com/share.php?u=<?php echo get_permalink() ?>" title="Share on Facebook" target="_blank">Facebook,</a>
<a href="http://twitter.com/home?status=Currently reading <?php the_permalink(); ?>" title="Share on Twitter" target="_blank">Twitter,</a>
有谁知道为Pinterest使用类似代码行的方法吗?任何指导表示赞赏。
最佳答案
这就是我在我的站点上所做的。
/*Stuff for Pinterest*/
//getting the permalink
$postpermalink = urlencode( get_permalink() );
//getting the thumbnail
$imageurl = urlencode( wp_get_attachment_url( get_post_thumbnail_id($post->ID) ) );
/*End of Pinterest*/
然后是html:
<a target="blank" href="http://pinterest.com/pin/create/button/?url=<?php echo $postpermalink ?>&media=<?php echo $imageurl ?>" title="Pin This Post">Pin</a>
希望这可以帮助。
关于wordpress - Pinterest 'Pin it' WordPress博客中仅用于文本的短代码链接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10240032/