403Webshell
Server IP : 77.68.64.21  /  Your IP : 216.73.216.219
Web Server : Apache
System : Linux hp3-wp-1011378.hostingp3.local 3.10.0-1160.144.1.el7.tuxcare.els9.x86_64 #1 SMP Fri Jul 10 17:06:31 UTC 2026 x86_64
User : csh2668128 ( 2112425)
PHP Version : 8.1.34
Disable Function : shell_exec,exec,system,popen,set_time_limit
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/domains/vol4/924/3261924/user/htdocs/wp-content/themes/jannah/templates/single-post/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/domains/vol4/924/3261924/user/htdocs/wp-content/themes/jannah/templates/single-post/share.php
<?php
/**
 * Post Share
 *
 * This template can be overridden by copying it to your-child-theme/templates/single-post/share.php.
 *
 * HOWEVER, on occasion TieLabs will need to update template files and you
 * will need to copy the new files to your child theme to maintain compatibility.
 *
 * @author   TieLabs
 * @version  4.4.0
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly


// Disable on bbPress pages
if( TIELABS_BBPRESS_IS_ACTIVE && is_bbpress() ){
	return;
}

// Check if the share buttons is hidden on mobiles
if( TIELABS_HELPER::is_mobile_and_hidden( 'share_post_'.$share_position ) ){
	return;
}

// Reset the main Post query - Some plugins' widgets change the main post query
wp_reset_postdata();

// Check if the sharing buttons are active
if( tie_get_postdata( 'tie_hide_share_'.$share_position ) == 'no' ||
	( get_post_type() == 'page' && tie_get_option( 'share_buttons_pages' ) && tie_get_option( 'share_post_'.$share_position ) && ! tie_get_postdata( 'tie_hide_share_'.$share_position ) ) ||
	( TIELABS_HELPER::is_supported_post_type() && tie_get_option( 'share_post_'.$share_position ) && ! tie_get_postdata( 'tie_hide_share_'.$share_position ) )){

	// Post Title
	$post_title = get_the_title();
	$post_title = html_entity_decode( $post_title, ENT_QUOTES, 'UTF-8' );
	$post_title = rawurlencode( $post_title );
	$post_title = str_replace( '#', '%23', $post_title );
	$post_title = esc_html( $post_title );

	$counter      = 0;
	$share_class  = '';
	$share_style  = tie_get_option( 'share_style_'.$share_position );
	$button_class = '';
	$text_class   = '';

	// Share button on Mobile layout
	if( $share_position == 'mobile' ){
		$share_style = 'style_3';
	}

	// Post link
	$post_link = tie_get_option( 'share_shortlink' ) ? wp_get_shortlink() : get_permalink();

	// Centered buttons
	if( tie_get_option( 'share_center_'.$share_position ) ){
		$share_class .= ' share-centered';
	}

	// Share layout
	if( $share_style == 'style_2' ){
		$share_class .= ' icons-text';
		$button_class = ' large-share-button';
		$text_class   = 'social-text';
	}
	elseif( $share_style == 'style_3' ){
		$share_class .= ' icons-only';
		$button_class = '';
		$text_class   = 'screen-reader-text';
	}
	elseif( $share_style == 'style_4' ){
		$share_class .= ' icons-only';
		$button_class = ' equal-width';
		$text_class   = 'screen-reader-text';
	}

	// Twitter username
	$share_twitter_username = tie_get_option( 'share_twitter_username' ) ? '&amp;via='.tie_get_option( 'share_twitter_username' ) : '';

	// Buttons array
	$share_buttons = array(

		'facebook' => array(
			'url'  => 'https://www.facebook.com/sharer.php?u='. $post_link,
			'text' => esc_html__( 'Facebook', TIELABS_TEXTDOMAIN ),
		),

		'twitter' => array(
			'url'   => 'https://twitter.com/intent/tweet?text='. $post_title .'&amp;url='. $post_link . $share_twitter_username,
			'text'  => esc_html__( 'Twitter', TIELABS_TEXTDOMAIN ),
		),

		'linkedin' => array(
			'url'  => 'https://www.linkedin.com/shareArticle?mini=true&amp;url='. get_permalink() .'&amp;title='. $post_title, // Shortlink causes issue
			'text' => esc_html__( 'LinkedIn', TIELABS_TEXTDOMAIN ),
		),

		'tumblr' => array(
			'url'  => 'https://www.tumblr.com/share/link?url='. $post_link .'&amp;name='. $post_title,
			'text' => esc_html__( 'Tumblr', TIELABS_TEXTDOMAIN ),
		),

		'pinterest' => array(
			'url'  => 'https://pinterest.com/pin/create/button/?url='. $post_link .'&amp;description='. $post_title .'&amp;media='. tie_thumb_src( TIELABS_THEME_SLUG.'-image-post' ),
			'text' => esc_html__( 'Pinterest', TIELABS_TEXTDOMAIN ),
		),

		'reddit' => array(
			'url'  => 'https://reddit.com/submit?url='. $post_link .'&amp;title='. $post_title,
			'text' => esc_html__( 'Reddit', TIELABS_TEXTDOMAIN ),
		),

		'vk' => array(
			'url'  => 'https://vk.com/share.php?url='. $post_link,
			'text' => esc_html__( 'VKontakte', TIELABS_TEXTDOMAIN ),
		),

		'odnoklassniki' => array(
			'url'  => 'https://connect.ok.ru/dk?st.cmd=WidgetSharePreview&st.shareUrl='. $post_link .'&amp;description='. $post_title .'&amp;media='. tie_thumb_src( TIELABS_THEME_SLUG.'-image-post' ),
			'text' => esc_html__( 'Odnoklassniki', TIELABS_TEXTDOMAIN ),
		),

		'pocket' => array(
			'url'  => 'https://getpocket.com/save?title='. $post_title .'&amp;url='.$post_link,
			'text' => esc_html__( 'Pocket', TIELABS_TEXTDOMAIN ),
			'icon' => 'fa fa-get-pocket',
		),

		'skype' => array(
			'url'   => 'https://web.skype.com/share?url='. $post_link .'&text='. $post_title,
			'text'  => esc_html__( 'Skype', TIELABS_TEXTDOMAIN ),
			'icon'  => 'fa fa-skype',
		),

		'whatsapp' => array(
			'url'   => 'https://api.whatsapp.com/send?text='. $post_title .'%20'.$post_link,
			'text'  => esc_html__( 'WhatsApp', TIELABS_TEXTDOMAIN ),
			'avoid_esc' => true,
		),

		'telegram' => array(
			'url'   => 'https://telegram.me/share/url?url='. $post_link .'&text='. $post_title,
			'text'  => esc_html__( 'Telegram', TIELABS_TEXTDOMAIN ),
			'icon'  => 'fa fa-paper-plane',
			'avoid_esc' => true,
		),

		'viber' => array(
			'url'   => 'viber://forward?text='. $post_title .'%20'.$post_link,
			'text'  => esc_html__( 'Viber', TIELABS_TEXTDOMAIN ),
			'icon'  => 'fa fa-volume-control-phone',
			'avoid_esc' => true,
		),

		'email' => array(
			'url'  => 'mailto:?subject='. $post_title .'&amp;body='. $post_link,
			'text' => esc_html__( 'Share via Email', TIELABS_TEXTDOMAIN ),
			'icon' => 'fa fa-envelope',
		),

		'print' => array(
			'url'  => '#',
			'text' => esc_html__( 'Print', TIELABS_TEXTDOMAIN ),
		),
	);


	$share_buttons = apply_filters( 'TieLabs/share_buttons', $share_buttons );

	$button_position = ( $share_position == 'bottom' ) ? '' : '_'.$share_position;

	$active_share_buttons = array();

	foreach ( $share_buttons as $network => $button ){
		if( tie_get_option( 'share_'.$network.$button_position ) ){
			$counter ++;
			$icon = empty( $button['icon'] ) ? 'fa fa-'.$network : $button['icon'];

			// Buttons Style 1
			if( empty( $share_style )){
				$button_class = '';
				$text_class   = 'screen-reader-text';

				if( $counter <= 2 ){
					$button_class = ' large-share-button';
					$text_class   = 'social-text';
				}
			}

			if( ! isset( $button['avoid_esc'] )){
				$button['url'] = esc_url( $button['url'] );
			}

			$active_share_buttons[] = '<a href="'. $button['url'] .'" rel="external noopener" target="_blank" class="'. $network.'-share-btn' . $button_class .'"><span class="'. $icon .'"></span> <span class="'. $text_class .'">'. $button['text'] .'</span></a>';
		}
	}

	if( is_array( $active_share_buttons ) && ! empty( $active_share_buttons ) ){ ?>

		<div class="post-footer post-footer-on-<?php echo esc_attr( $share_position ) ?>">
			<div class="share-links <?php echo esc_attr( $share_class ) ?>">
				<?php
					if( tie_get_option( 'share_title_'.$share_position ) ){ ?>
						<div class="share-title">
						<span class="fa fa-share-alt" aria-hidden="true"></span>
						<span> <?php esc_html_e( 'Share', TIELABS_TEXTDOMAIN ); ?></span>
						</div>
						<?php
					}

					echo implode( '', $active_share_buttons );
				?>
			</div><!-- .share-links /-->
		</div><!-- .post-footer-on-top /-->

		<?php

		// For mobile share buttons add a space below it
		if( $share_position == 'mobile' ){
			echo '<div class="mobile-share-buttons-spacer"></div>';
		}

	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit