gpt4 book ai didi

wordpress - Pinterest 'Pin it' wordpress 博客中纯文本链接的短代码

转载 作者:行者123 更新时间:2023-12-04 15:02:18 26 4
gpt4 key购买 nike

我试图找到一个短代码,使我能够添加一个“Pin It”(Pinterest)文本链接到我的 wordpress 博客。我只想要一个文本链接。我不想使用他们提供代码的图形按钮,这就是为什么这很棘手。

使用 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com