Current File : /home/aventura/www/site/wp-content/themes/kleo/page-parts/posts-social-share.php |
<?php
/**
* Displays social share icons
* @package WordPress
* @subpackage Kleo
* @since Kleo 1.0
*/
/* Check if we enabled social share for the post type */
$enabled_posts = sq_option('blog_share_types', array('post', 'product'));
if (!in_array(get_post_type(), (array)$enabled_posts)) {
return;
}
$social_share = sq_option('blog_social_share', 1);
/* Check page setting. If disabled remove also the like */
if (get_cfield('blog_social_share') != '') {
$social_share = get_cfield('blog_social_share');
if ($social_share == 0) {
return;
}
}
/* Check if this post is in the excluded posts list */
$excluded_posts = str_replace(' ', '', trim(strip_tags(sq_option('blog_share_exclude', ''))));
$excluded_posts_ids = explode(',', $excluded_posts);
if (in_array(get_the_ID(), (array)$excluded_posts_ids)) {
$social_share = 0;
}
/* Likes */
$like_status = sq_option('likes_status', 1);
$exclude_likes = str_replace(' ', '', trim(strip_tags(sq_option('likes_exclude'))));
$exclude_likes_ids = explode(',', $exclude_likes);
if (in_array(get_the_ID(), $exclude_likes_ids)) {
$like_status = 0;
}
if ($social_share != 1 && $like_status != 1) {
return;
}
?>
<section class="main-color container-wrap social-share-wrap">
<div class="container">
<div class="share-links">
<div class="hr-title hr-long"><abbr><?php esc_html_e("Share this", "kleo_framework"); ?></abbr></div>
<?php if ($like_status == 1) : ?>
<span class="kleo-love">
<?php do_action('kleo_show_love'); ?>
</span>
<?php endif; ?>
<?php if ($social_share == 1) : ?>
<?php do_action('kleo_additional_social_share'); ?>
<?php if (sq_option('blog_social_share_facebook', 1)) : ?>
<span class="kleo-facebook">
<a href="http://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>" class="post_share_facebook"
onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=220,width=600');return false;">
<i class="icon-facebook"></i>
</a>
</span>
<?php endif; ?>
<?php if (sq_option('blog_social_share_twitter', 1)) : ?>
<span class="kleo-twitter">
<a href="https://twitter.com/share?url=<?php the_permalink(); ?>" class="post_share_twitter"
onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=260,width=600');return false;">
<i class="icon-twitter"></i>
</a>
</span>
<?php endif; ?>
<?php if (sq_option('blog_social_share_googleplus', 1)) : ?>
<span class="kleo-googleplus">
<a href="https://plus.google.com/share?url=<?php the_permalink(); ?>"
onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;">
<i class="icon-gplus"></i>
</a>
</span>
<?php endif; ?>
<?php if (sq_option('blog_social_share_pinterest', 1)) : ?>
<span class="kleo-pinterest">
<a href="http://pinterest.com/pin/create/button/?url=<?php the_permalink(); ?>&media=<?php if (function_exists('the_post_thumbnail')) echo wp_get_attachment_url(get_post_thumbnail_id()); ?>&description=<?php echo strip_tags(get_the_title()); ?>"
onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;">
<i class="icon-pinterest-circled"></i>
</a>
</span>
<?php endif; ?>
<?php if (sq_option('blog_social_share_linkedin', 0)) : ?>
<span class="kleo-linkedin">
<a href="https://www.linkedin.com/shareArticle?url=<?php the_permalink(); ?>"
class="post_share_linkedin"
onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;">
<i class="icon-linkedin"></i>
</a>
</span>
<?php endif; ?>
<?php if (sq_option('blog_social_share_whatsapp', 0)) : ?>
<span class="kleo-whatsapp visible-xs-inline visible-sm-inline">
<a href="whatsapp://send?text=<?php the_permalink(); ?>" data-action="share/whatsapp/share">
<i class="icon-whatsapp"></i>
</a>
</span>
<?php endif; ?>
<?php if (sq_option('blog_social_share_vk', 0)) : ?>
<span class="kleo-vk">
<a href="https://vk.com/share.php?url=<?php the_permalink(); ?>"
onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;">
<i class="icon-vkontakte"></i>
</a>
</span>
<?php endif; ?>
<?php if (sq_option('blog_social_share_mail', 1)) : ?>
<span class="kleo-mail">
<a href="mailto:?subject=<?php echo strip_tags(get_the_title()); ?>&body=<?php the_permalink(); ?>"
class="post_share_email">
<i class="icon-mail"></i>
</a>
</span>
<?php endif; ?>
<?php endif; ?>
</div>
</div>
</section>