| Server IP : 198.38.94.67 / Your IP : 216.73.217.142 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/azfilmst/goldendunesfilmfestival.com/wp-content/plugins/pt-mirel-addons/include/ |
Upload File : |
<?php
function yprm_share_block($type = null) {
ob_start();
$link = get_permalink();
$links = array(
array(
'type' => 'facebook',
'url' => 'http://www.facebook.com/sharer.php?u='.$link
),
/* array(
'type' => 'linkedin',
'url' => 'https://www.linkedin.com/shareArticle?mini=true&url='.$link
), */
/* array(
'type' => 'pinterest',
'url' => 'http://pinterest.com/pin/create/button/?url='.$link
), */
array(
'type' => 'tumblr',
'url' => 'https://www.tumblr.com/widgets/share/tool?canonicalUrl='.$link
),
array(
'type' => 'twitter',
'url' => 'https://twitter.com/intent/tweet?url='.$link
),
);
if($type == 'type2') { ?>
<?php if($social_links_html = yprm_build_social_links('with-label', $links, '_blank')) { ?>
<div class="social-links-with-label">
<?php echo wp_kses($social_links_html ,'post') ?>
</div>
<?php } ?>
<?php } else { ?>
<div class="share-block">
<div class="button"><span><?php echo esc_html__('Share', 'pt-addons') ?></span></div>
<?php if($social_links_html = yprm_build_social_links(false, $links, '_blank')) { ?>
<div class="links">
<div class="social-links">
<?php echo wp_kses($social_links_html ,'post') ?>
</div>
</div>
<?php } ?>
</div>
<?php }
return ob_get_clean();
}