Skip to content

Instantly share code, notes, and snippets.

@kaweski
Created November 21, 2016 12:58
Show Gist options
  • Save kaweski/4a9b2f5d4ef1c1a4644ba1ce9f05e905 to your computer and use it in GitHub Desktop.
Save kaweski/4a9b2f5d4ef1c1a4644ba1ce9f05e905 to your computer and use it in GitHub Desktop.
Botões de compartilhamento
<?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