Created
November 21, 2016 12:58
-
-
Save kaweski/4a9b2f5d4ef1c1a4644ba1ce9f05e905 to your computer and use it in GitHub Desktop.
Botões de compartilhamento
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
<?php | |
/** | |
* Botões de Compartilhamento | |
*/ | |
$share_url = get_permalink(); | |
$share_title = get_the_title(); | |
$post_id = get_the_id(); | |
$thumb_id = get_post_thumbnail_id( $post_id ); | |
$thumb_url = wp_get_attachment_image_src( $thumb_id, 'thumbnail', true ); | |
$share_media = $thumb_url[0]; | |
foundation_q_the_share_buttons( $share_url, $share_title, $share_media ); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment