File: /var/www/html/wpprotonperinggit/wp-content/themes/voiture/template-parts/sharebox-listing.php
<?php
global $post;
wp_enqueue_script('addthis');
if ( !voiture_get_config('show_listing_social_share', true) ) {
return;
}
$img = '';
if ( has_post_thumbnail() ) {
$img = get_the_post_thumbnail_url($post->ID, 'full');
}
?>
<div class="social-listing">
<a href="javascript:void(0);" class="btn-add-social">
<i class="flaticon-share"></i>
<span><?php esc_html_e('Share', 'voiture'); ?></span>
</a>
<div class="bo-social-icons">
<?php if ( voiture_get_config('facebook_share', 1) ): ?>
<a class="facebook" data-toggle="tooltip" href="https://www.facebook.com/sharer.php?s=100&u=<?php the_permalink(); ?>&i=<?php echo urlencode($img); ?>" target="_blank" title="<?php esc_attr_e('Share on facebook', 'voiture'); ?>">
<i class="fab fa-facebook-f"></i>
</a>
<?php endif; ?>
<?php if ( voiture_get_config('twitter_share', 1) ): ?>
<a class="twitter" data-toggle="tooltip" href="https://twitter.com/intent/tweet?url=<?php the_permalink(); ?>" target="_blank" title="<?php esc_attr_e('Share on Twitter', 'voiture'); ?>">
<i class="fab fa-twitter"></i>
</a>
<?php endif; ?>
<?php if ( voiture_get_config('linkedin_share', 1) ): ?>
<a class="linkedin" data-toggle="tooltip" href="https://linkedin.com/shareArticle?mini=true&url=<?php the_permalink(); ?>&title=<?php the_title(); ?>" target="_blank" title="<?php esc_attr_e('Share on LinkedIn', 'voiture'); ?>">
<i class="fab fa-linkedin-in"></i>
</a>
<?php endif; ?>
<?php if ( voiture_get_config('pinterest_share', 1) ): ?>
<a class="pinterest" data-toggle="tooltip" href="https://pinterest.com/pin/create/button/?url=<?php echo urlencode(get_permalink()); ?>&media=<?php echo urlencode($img); ?>" target="_blank" title="<?php esc_attr_e('Share on Pinterest', 'voiture'); ?>">
<i class="fab fa-pinterest-p"></i>
</a>
<?php endif; ?>
</div>
</div>