我正在尝试找到一个简短的代码,它可以让我添加一个'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使用类似的代码行?任何指导都表示赞赏。
答案 0 :(得分:3)
这就是我在我的网站上所做的事情。
/*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>
希望这有帮助。
答案 1 :(得分:2)
我使用:(source)
在function.php中:
function pinterest_post_page_pin_no_count() {
global $post;
/* HORIZONTAL NO-COUNTER PINTEREST BUTTON */
printf( '<div class="pinterest-posts"><a href="http://pinterest.com/pin/create/button/?url=%s&media=%s" class="pin-it-button" count-layout="none">Pin It</a><script type="text/javascript" src="http://assets.pinterest.com/js/pinit.js"></script></div>', urlencode(get_permalink()), urlencode( get_post_meta($post->ID, 'thesis_post_image', true) ) );
}
add_shortcode( 'thesis_hook_before_post_box', 'pinterest_post_page_pin_no_count' );
%template-name%.php 中的
<?php echo do_shortcode("[thesis_hook_before_post_box]"); ?>
或只是(source)
<a href="http://www.pinterest.com/pin/create/button/?url=<?php the_permalink(); ?>&media=<?php if(function_exists('the_post_thumbnail')) echo wp_get_attachment_url(get_post_thumbnail_id()); ?>&description=<?php echo get_the_title(); ?> - <?php echo get_permalink(); ?>" id="pinterest" target="_blank">Pinterest Pin It</a>
答案 2 :(得分:1)
您可以使用类似的方法:
<a target="_blank" href="http://pinterest.com/pin/create/button/?url=<?php the_permalink(); ?>&media=<?php echo $image->guid;?>&description=<?php echo rawurlencode(get_the_title()); ?>">Pinterest,</a>
示例HTML:
<a target="_blank" href="http://pinterest.com/pin/create/button/?url=http://www.google.&media=http://www.google.co.id/images/srpr/logo3w.png&description=Google Search Engine" >Pinterest,</a>
答案 3 :(得分:0)
如果我仔细查看the generated button:
有一个<img>
标记:
也许这就是你想要的:
<a href="http://pinterest.com/pin/create/button/" class="pin-it-button" count-layout="horizontal">pin it!</a>
这就是你使用服务器代码的方式:
<a href="http://pinterest.com/pin/create/button/?url={the URL you want to pin}&media={image URL assiciated to the URL}&description={image or URL description}" class="pin-it-button" count-layout="horizontal">pin it!</a>
答案 4 :(得分:0)
将@AllanT答案转换为短代码。
用法:[pinterest-link title="HREF TITLE" text="ANCHOR TEXT"]
属性title
和text
是可选的。
add_shortcode( 'pinterest-link', 'so_10240032_pinterest_text_link' );
function so_10240032_pinterest_text_link( $atts, $content = null )
{
$title = ( isset( $atts['title'] ) ) ? $atts['title'] : 'Pin This Post';
$text = ( isset( $atts['text'] ) ) ? $atts['text'] : 'Pin';
$postpermalink = urlencode( get_permalink() );
$imageurl = urlencode(
wp_get_attachment_url(
get_post_thumbnail_id( $post->ID )
)
);
$html =
'<a target="blank" href="http://pinterest.com/pin/create/button/?url='
. $postpermalink
. '&media='
. $imageurl
. '" title="'
. $title
. '">'
. $text
. '</a>';
return $html;
}