Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chaselivingston/08a81526d7c791d7f3825673ee268a70 to your computer and use it in GitHub Desktop.
Save chaselivingston/08a81526d7c791d7f3825673ee268a70 to your computer and use it in GitHub Desktop.
function jeherve_multiple_images_pinterest( $url ) {
global $post;
if ( ! $post ) {
return $url;
}
$url = '//www.pinterest.com/pin/create/button/?url=' . rawurlencode( get_permalink( $post->ID ) ) . '&description=' . rawurlencode( $post->post_title );
return $url;
}
add_filter( 'jetpack_sharing_pinterest_share_url', 'jeherve_multiple_images_pinterest' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment