File: /var/www/html/wp-content/themes/thegem-elementor/gem-templates/portfolio/socials-sharing.php
<?php
$post_image = '';
$attachment_id = get_post_thumbnail_id($post_id);
if ($attachment_id) {
$post_image = thegem_generate_thumbnail_src($attachment_id, 'thegem-blog-timeline-large');
if ($post_image && $post_image[0]) {
$post_image = $post_image[0];
}
}
?>
<div class="socials-sharing socials socials-colored-hover ">
<?php if ($settings['shares_show_facebook'] == 'yes'): ?>
<a class="socials-item" target="_blank"
href="<?php echo esc_url('https://www.facebook.com/sharer/sharer.php?u=' . urlencode(get_permalink())); ?>"
title="Facebook"><i class="socials-item-icon facebook"></i></a>
<?php endif; ?>
<?php if ($settings['shares_show_twitter'] == 'yes'): ?>
<a class="socials-item" target="_blank"
href="<?php echo esc_url('https://twitter.com/intent/tweet?text=' . urlencode(get_the_title()) . '&url=' . urlencode(get_permalink())); ?>"
title="Twitter"><i class="socials-item-icon twitter"></i></a>
<?php endif; ?>
<?php if ($settings['shares_show_pinterest'] == 'yes'): ?>
<a class="socials-item" target="_blank"
href="<?php echo esc_url('https://pinterest.com/pin/create/button/?url=' . urlencode(get_permalink()) . '&description=' . urlencode(get_the_title()) . ($post_image ? '&media=' . urlencode($post_image) : '')); ?>"
title="Pinterest"><i class="socials-item-icon pinterest"></i></a>
<?php endif; ?>
<?php if ($settings['shares_show_tumblr'] == 'yes'): ?>
<a class="socials-item" target="_blank"
href="<?php echo esc_url('http://tumblr.com/widgets/share/tool?canonicalUrl=' . urlencode(get_permalink())); ?>"
title="Tumblr"><i class="socials-item-icon tumblr"></i></a>
<?php endif; ?>
<?php if ($settings['shares_show_linkedin'] == 'yes'): ?>
<a class="socials-item" target="_blank"
href="<?php echo esc_url('https://www.linkedin.com/shareArticle?mini=true&url=' . urlencode(get_permalink()) . '&title=' . urlencode(get_the_title())); ?>&summary=<?php echo urlencode(get_the_excerpt()); ?>"
title="LinkedIn"><i class="socials-item-icon linkedin"></i></a>
<?php endif; ?>
<?php if ($settings['shares_show_reddit'] == 'yes'): ?>
<a class="socials-item" target="_blank"
href="<?php echo esc_url('https://www.reddit.com/submit?url=' . urlencode(get_permalink()) . '&title=' . urlencode(get_the_title())); ?>"
title="Reddit"><i class="socials-item-icon reddit"></i></a>
<?php endif; ?>
</div>