Created
October 10, 2016 23:51
-
-
Save chaselivingston/08a81526d7c791d7f3825673ee268a70 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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