| Server IP : 159.203.156.69 / Your IP : 216.73.216.37 Web Server : nginx/1.24.0 System : Linux main-ubuntu 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/php/green-estate-prod/wp-content/themes/spaciaz/template-parts/ |
Upload File : |
<?php
/**
* $Desc
*
* @version $Id$
* @package wpbase
* @author Opal Team <opalwordpress@gmail.com>
* @copyright Copyright (C) 2017 wpopal.com. All Rights Reserved.
* @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
*
* @website http://www.wpopal.com
* @support http://www.wpopal.com/questions/
*/
/**
* Enable/distable share box
*/
if (spaciaz_get_theme_option('social_share')) {
?>
<div class="spaciaz-social-share">
<?php echo '<span class="social-share-header">' . apply_filters('spaciaz_social_heading', esc_html__('Share: ', 'spaciaz')) . '</span>'; ?>
<?php if (spaciaz_get_theme_option('social_share_facebook')): ?>
<a class="social-facebook"
href="http://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>&display=page"
target="_blank" title="<?php esc_attr_e('Share on facebook', 'spaciaz'); ?>">
<i class="spaciaz-icon-facebook-f"></i>
<span><?php esc_html_e('Facebook', 'spaciaz'); ?></span>
</a>
<?php endif; ?>
<?php if (spaciaz_get_theme_option('social_share_twitter')): ?>
<a class="social-twitter"
href="http://twitter.com/home?status=<?php echo esc_url(get_the_title()); ?> <?php the_permalink(); ?>" target="_blank"
title="<?php esc_attr_e('Share on Twitter', 'spaciaz'); ?>">
<i class="spaciaz-icon- spaciaz-icon-twitter-x"></i>
<span><?php esc_html_e('Twitter', 'spaciaz'); ?></span>
</a>
<?php endif; ?>
<?php if (spaciaz_get_theme_option('social_share_linkedin')): ?>
<a class="social-linkedin"
href="http://linkedin.com/shareArticle?mini=true&url=<?php the_permalink(); ?>&title=<?php the_title(); ?>"
target="_blank" title="<?php esc_attr_e('Share on LinkedIn', 'spaciaz'); ?>">
<i class="spaciaz-icon-linkedin"></i>
<span><?php esc_html_e('Linkedin', 'spaciaz'); ?></span>
</a>
<?php endif; ?>
<?php if (spaciaz_get_theme_option('social_share_google-plus')): ?>
<a class="social-google" 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;" target="_blank"
title="<?php esc_attr_e('Share on Google plus', 'spaciaz'); ?>">
<i class="spaciaz-icon-google-plus-g"></i>
<span><?php esc_html_e('Google+', 'spaciaz'); ?></span>
</a>
<?php endif; ?>
<?php if (spaciaz_get_theme_option('social_share_pinterest')): ?>
<a class="social-pinterest"
href="http://pinterest.com/pin/create/button/?url=<?php echo esc_url(urlencode(get_permalink())); ?>&description=<?php echo esc_url(urlencode(get_the_title())); ?>&; ?>"
target="_blank" title="<?php esc_attr_e('Share on Pinterest', 'spaciaz'); ?>">
<i class="spaciaz-icon-pinterest-p"></i>
<span><?php esc_html_e('Pinterest', 'spaciaz'); ?></span>
</a>
<?php endif; ?>
<?php if (spaciaz_get_theme_option('social_share_email')): ?>
<a class="social-envelope" href="mailto:?subject=<?php the_title(); ?>&body=<?php the_permalink(); ?>"
title="<?php esc_attr_e('Email to a Friend', 'spaciaz'); ?>">
<i class="spaciaz-icon-envelope"></i>
<span><?php esc_html_e('Email', 'spaciaz'); ?></span>
</a>
<?php endif; ?>
</div>
<?php
}
?>