|
<?php |
|
/** |
|
* Used for displaying social sharing buttons |
|
*/ |
|
|
|
$permalink = urlencode( get_permalink() ); // Post URL/Permalink |
|
$site_title = urlencode( get_bloginfo( 'name' ) ); // Site title |
|
$title = urlencode( get_the_title() ); // Post title |
|
$excerpt = urlencode( get_the_excerpt() ); // Post excerpt |
|
$home_url = urlencode( home_url() ); // Home URL |
|
$image = wp_get_attachment_url( get_post_thumbnail_id() ); // Post thumbnail image url |
|
$hashtags = urlencode( '' ); // Comma separated list of tags |
|
|
|
if( $twitter = get_field( 'twitter_handle', 'options' ) ) { |
|
$twitter_handle = '&via='.urlencode( $twitter ); // Gets set on the ACF options page |
|
} else { |
|
$twitter_handle = ''; |
|
} |
|
|
|
$social_share = array( |
|
'facebook' => array( |
|
'icon' => 'facebook', |
|
'text' => 'Share on Facebook', |
|
'link' => 'https://www.facebook.com/sharer/sharer.php'. |
|
'?u=' . $permalink |
|
), |
|
'twitter' => array( |
|
'icon' => 'twitter', |
|
'text' => 'Share on Twitter', |
|
'link' => 'https://twitter.com/intent/tweet/'. |
|
'?text=' . $site_title.' - ' . $title . |
|
'&url=' . $permalink . |
|
'&via=' . $twitter_handle . |
|
'&hashtags=' . $hashtags |
|
), |
|
'google-plus' => array( |
|
'icon' => 'google-plus', |
|
'text' => 'Share on Google+', |
|
'link' => 'https://plus.google.com/share' . |
|
'?url=' . $permalink |
|
), |
|
'linkedin' => array( |
|
'icon' => 'linkedin', |
|
'text' => 'Share on LinkedIn', |
|
'link' => 'https://www.linkedin.com/shareArticle' . |
|
'?mini=true' . |
|
'&url=' . $permalink . |
|
'&title=' . $title . |
|
'&source=' . $home_url . |
|
'&summary=' . $excerpt |
|
), |
|
'pinterest' => array( |
|
'icon' => 'pinterest', |
|
'text' => 'Share on Pinterest', |
|
'link' => 'https://www.pinterest.com/pin/create/button/' . |
|
'?url=' . $permalink . |
|
'&media=' . $image . |
|
'&description=' . $site_title.' - ' . $title . |
|
'&hashtags=' . $hashtags |
|
), |
|
'email' => array( |
|
'icon' => 'envelope', |
|
'text' => 'Share by Email', |
|
'link' => 'mailto:'. |
|
'?subject=' . $site_title.' - ' . $title . |
|
'&body=' . $permalink |
|
), |
|
'print' => array( |
|
'icon' => 'print', |
|
'text' => 'Share by Printing', |
|
'link' => 'javascript:window.print()' |
|
) |
|
); |
|
|
|
?> |
|
|
|
<div class="social-share"> |
|
<ul> |
|
<?php foreach( $social_share as $key => $val ) : ?> |
|
<li class="<?php echo $key; ?>"> |
|
<a href="<?php echo $val['link']; ?>"> |
|
<i class="icon fa fa-<?php echo $val['icon']; ?>"></i> |
|
<span class="label"><?php echo $val['text']; ?></span> |
|
</a> |
|
</li> |
|
<?php endforeach; ?> |
|
</ul> |
|
</div> |