| Server IP : 198.38.94.67 / Your IP : 216.73.217.74 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/www/wp-content/themes/frames/templates/ |
Upload File : |
<?php
/**
* @package HaruTheme
* @version 1.0.0
* @author Administrator <admin@harutheme.com>
* @copyright Copyright (c) 2017, HaruTheme
* @license http://opensource.org/licenses/gpl-2.0.php GPL v2 or later
* @link http://harutheme.com
*/
$social_sharing = haru_get_option( 'haru_social_sharing', array() );
$sharing_facebook = isset( $social_sharing['facebook'] ) ? $social_sharing['facebook'] : 0;
$sharing_twitter = isset( $social_sharing['twitter'] ) ? $social_sharing['twitter'] : 0;
$sharing_linkedin = isset( $social_sharing['linkedin'] ) ? $social_sharing['linkedin'] : 0;
$sharing_tumblr = isset( $social_sharing['tumblr'] ) ? $social_sharing['tumblr'] : 0;
$sharing_pinterest = isset( $social_sharing['pinterest'] ) ? $social_sharing['pinterest'] : 0;
$sharing_vk = isset( $social_sharing['vk'] ) ? $social_sharing['vk'] : 0;
$sharing_telegram = isset( $social_sharing['telegram'] ) ? $social_sharing['telegram'] : 0;
?>
<?php if ( $social_sharing ) : ?>
<div class="haru-social-share">
<?php if ( ( $sharing_facebook == 1 ) || ( $sharing_twitter == 1 ) || ( $sharing_linkedin == 1 ) || ( $sharing_tumblr == 1 ) || ( $sharing_vk == 1 ) || ( $sharing_pinterest == 1 ) || ( $sharing_telegram == 1 ) ) : ?>
<div class="haru-social-share__wrap">
<label class="haru-social-share__label"><?php echo esc_html__( 'Share: ', 'frames' ); ?></label>
<ul class="haru-social-share__list">
<?php if ( $sharing_facebook == 1 ) : ?>
<li class="haru-social-share__facebook">
<a onclick="window.open('https://www.facebook.com/sharer.php?u=<?php echo esc_attr( urlencode(get_permalink()) ); ?>', 'sharer', 'toolbar=0,status=0,width=620,height=280');" href="javascript:;">
</a>
</li>
<?php endif; ?>
<?php if ( $sharing_twitter == 1 ) : ?>
<li class="haru-social-share__twitter">
<a onclick="popUp=window.open('http://twitter.com/share?text=<?php echo esc_attr(urlencode(get_the_title())); ?>&url=<?php echo esc_attr(urlencode(get_permalink())); ?>','sharer','scrollbars=yes,width=800,height=400');popUp.focus();return false;" href="javascript:;">
</a>
</li>
<?php endif; ?>
<?php if ( $sharing_linkedin == 1 ) : ?>
<li class="haru-social-share__linkedin">
<a onclick="popUp=window.open('https://linkedin.com/shareArticle?mini=true&url=<?php echo esc_attr(urlencode(get_permalink())); ?>&title=<?php echo esc_attr(urlencode(get_the_title())); ?>','sharer','scrollbars=yes,width=800,height=400');popUp.focus();return false;" href="javascript:;">
</a>
</li>
<?php endif; ?>
<?php if ( $sharing_tumblr == 1 ) : ?>
<li class="haru-social-share__tumblr">
<a onclick="popUp=window.open('https://www.tumblr.com/share/link?url=<?php echo esc_attr(urlencode(get_permalink())); ?>&name=<?php echo esc_attr(urlencode(get_the_title())); ?>&description=<?php echo esc_attr(urlencode(get_the_excerpt())); ?>','sharer','scrollbars=yes,width=800,height=400');popUp.focus();return false;" href="javascript:;">
</a>
</li>
<?php endif; ?>
<?php if ( $sharing_pinterest == 1 ) : ?>
<li class="haru-social-share__pinterest">
<a onclick="popUp=window.open('https://pinterest.com/pin/create/button/?url=<?php echo esc_attr(urlencode(get_permalink())); ?>&description=<?php echo esc_attr(urlencode(get_the_title())); ?>&media=<?php echo has_post_thumbnail() ? esc_url( get_the_post_thumbnail_url() ) : "" ; ?>','sharer','scrollbars=yes,width=800,height=400');popUp.focus();return false;" href="javascript:;">
</a>
</li>
<?php endif; ?>
<?php if ( $sharing_vk == 1 ) : ?>
<li class="haru-social-share__vk">
<a onclick="popUp=window.open('http://vk.com/share.php?url=<?php echo esc_attr(urlencode(get_permalink())); ?>&description=<?php echo esc_attr(urlencode(get_the_title())); ?>&image=<?php echo has_post_thumbnail() ? esc_url( get_the_post_thumbnail_url() ) : "" ; ?>','sharer','scrollbars=yes,toolbar=0,status=0,width=800,height=400');popUp.focus();return false;" href="javascript:;">
</a>
</li>
<?php endif; ?>
<?php if ( $sharing_telegram == 1 ) : ?>
<li class="haru-social-share__telegram">
<a onclick="popUp=window.open('https://telegram.me/share/url?url=<?php echo esc_attr(urlencode(get_permalink())); ?>&text=<?php echo esc_attr(urlencode(get_the_title())); ?>','sharer','scrollbars=yes,toolbar=0,status=0,width=800,height=400');popUp.focus();return false;" href="javascript:;">
</a>
</li>
<?php endif; ?>
</ul>
</div>
<?php endif; ?>
</div>
<?php endif; ?>