Skip to content

Instantly share code, notes, and snippets.

@studiopress
Last active December 17, 2015 15:59
Show Gist options
  • Save studiopress/5635780 to your computer and use it in GitHub Desktop.
Save studiopress/5635780 to your computer and use it in GitHub Desktop.
Genesis Pinterest button.
<?php
//* Add Horizontal Pinterest button
add_action( 'genesis_post_content', 'sp_pinterest_button', 5 );
function sp_pinterest_button() {
printf( '<div class="pinterest-button"><a href="http://pinterest.com/pin/create/button/?url=%s&media=%s" class="pin-it-button" count-layout="horizontal">Pin It</a><script type="text/javascript" src="http://assets.pinterest.com/js/pinit.js"></script></div>', urlencode( get_permalink() ), urlencode( genesis_get_image( array( 'format' => 'url' ) ) ) );
}
genesis();
<?php
//* Add No-count Pinterest button
add_action( 'genesis_post_content', 'sp_pinterest_button', 5 );
function sp_pinterest_button() {
printf( '<div class="pinterest-button"><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( genesis_get_image( array( 'format' => 'url' ) ) ) );
}
genesis();
<?php
//* Add Vertical Pinterest button
add_action( 'genesis_post_content', 'sp_pinterest_button', 5 );
function sp_pinterest_button() {
printf( '<div class="pinterest-button"><a href="http://pinterest.com/pin/create/button/?url=%s&media=%s" class="pin-it-button" count-layout="vertical">Pin It</a><script type="text/javascript" src="http://assets.pinterest.com/js/pinit.js"></script></div>', urlencode( get_permalink() ), urlencode( genesis_get_image( array( 'format' => 'url' ) ) ) );
}
genesis();
/* Pinterest Button
--------------------------------------------- */
.pinterest-button iframe {
margin: 10px 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment