Uname: Linux premium72.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software: LiteSpeed
PHP version: 8.2.29 [ PHP INFO ] PHP os: Linux
Server Ip: 198.54.125.95
Your Ip: 216.73.216.132
User: matican (532) | Group: matican (531)
Safe Mode: OFF
Disable Function:
NONE

name : single-magazine.php
<?php
	/**
	 * The template part for displaying single posts style 1
	 */

	// print header title
	if( get_post_type() == 'post' ){
		get_template_part('header/header', 'title-blog');
	}

	$post_option = logisco_get_post_option(get_the_ID());
	$post_option = empty($post_option)? array(): $post_option;
	$post_option['show-content'] = empty($post_option['show-content'])? 'enable': $post_option['show-content']; 

	if( empty($post_option['sidebar']) || $post_option['sidebar'] == 'default' ){
		$sidebar_type = logisco_get_option('general', 'blog-sidebar', 'none');
		$sidebar_left = logisco_get_option('general', 'blog-sidebar-left');
		$sidebar_right = logisco_get_option('general', 'blog-sidebar-right');
	}else{
		$sidebar_type = empty($post_option['sidebar'])? 'none': $post_option['sidebar'];
		$sidebar_left = empty($post_option['sidebar-left'])? '': $post_option['sidebar-left'];
		$sidebar_right = empty($post_option['sidebar-right'])? '': $post_option['sidebar-right'];
	}

	if( $sidebar_type != 'none' || $post_option['show-content'] == 'enable' ){
		echo '<div class="logisco-content-container logisco-container">';
		echo '<div class="' . esc_attr(logisco_get_sidebar_wrap_class($sidebar_type)) . '" >';

		// sidebar content
		echo '<div class="' . esc_attr(logisco_get_sidebar_class(array('sidebar-type'=>$sidebar_type, 'section'=>'center'))) . '" >';
		echo '<div class="logisco-content-wrap logisco-item-pdlr clearfix" >';

		// single content
		if( $post_option['show-content'] == 'enable' ){
			echo '<div class="logisco-content-area" >';
			if( in_array(get_post_format(), array('aside', 'quote', 'link')) ){
				get_template_part('content/content', get_post_format());
			}else{
				get_template_part('content/content', 'single');
			}
			echo '</div>';
		}
	}

	if( !post_password_required() ){
		if( $sidebar_type != 'none' ){
			echo '<div class="logisco-page-builder-wrap logisco-item-rvpdlr" >';
			do_action('gdlr_core_print_page_builder');
			echo '</div>';

		// sidebar == 'none'
		}else{
			ob_start();
			do_action('gdlr_core_print_page_builder');
			$pb_content = ob_get_contents();
			ob_end_clean();

			if( !empty($pb_content) ){
				if( $post_option['show-content'] == 'enable' ){
					echo '</div>'; // logisco-content-area
					echo '</div>'; // logisco_get_sidebar_class
					echo '</div>'; // logisco_get_sidebar_wrap_class
					echo '</div>'; // logisco_content_container
				}
				echo gdlr_core_escape_content($pb_content);
				echo '<div class="logisco-bottom-page-builder-container logisco-container" >'; // logisco-content-area
				echo '<div class="logisco-bottom-page-builder-sidebar-wrap logisco-sidebar-style-none" >'; // logisco_get_sidebar_class
				echo '<div class="logisco-bottom-page-builder-sidebar-class" >'; // logisco_get_sidebar_wrap_class
				echo '<div class="logisco-bottom-page-builder-content logisco-item-pdlr" >'; // logisco_content_container
			}
		}
	}

	// social share
	if( logisco_get_option('general', 'blog-social-share', 'enable') == 'enable' ){
		if( class_exists('gdlr_core_pb_element_social_share') ){
			$share_count = (logisco_get_option('general', 'blog-social-share-count', 'enable') == 'enable')? 'counter': 'none';

			echo '<div class="logisco-single-social-share logisco-item-rvpdlr" >';
			echo gdlr_core_pb_element_social_share::get_content(array(
				'social-head' => $share_count,
				'style'=>'color',
				'layout'=>'right-text', 
				'text-align'=>'left',
				'facebook'=>logisco_get_option('general', 'blog-social-facebook', 'enable'),
				'linkedin'=>logisco_get_option('general', 'blog-social-linkedin', 'enable'),
				'google-plus'=>logisco_get_option('general', 'blog-social-google-plus', 'enable'),
				'pinterest'=>logisco_get_option('general', 'blog-social-pinterest', 'enable'),
				'stumbleupon'=>logisco_get_option('general', 'blog-social-stumbleupon', 'enable'),
				'twitter'=>logisco_get_option('general', 'blog-social-twitter', 'enable'),
				'email'=>logisco_get_option('general', 'blog-social-email', 'enable'),
				'padding-bottom'=>'0px'
			));
			echo '</div>';
		}
	}

	// tag for blog style 2
	echo '<div class="logisco-single-magazine-author-tags clearfix" >';
	echo get_the_term_list(get_the_ID(), 'post_tag', '', '' , '');
	echo '</div>';

	// prev - next post navigation
	if( logisco_get_option('general', 'blog-navigation', 'enable') == 'enable' ){
		$prev_post = get_previous_post();
		$prev_post_html = '';
		if( !empty($prev_post) ){
			$prev_post_html = get_previous_post_link(
				'<span class="logisco-single-nav logisco-single-nav-left">' . 
				'<span class="logisco-text logisco-title-font" >' . esc_html__( 'Previous Post', 'logisco' ) . '</span>' .
				'%link' . 
				'</span>',
				'<span class="logisco-single-nav-title logisco-title-font" >%title</span>'
				
			);
		}
		$next_post = get_next_post(); 
		$next_post_html = '';
		if( !empty($next_post) ){
			$next_post_html = get_next_post_link( 
				'<span class="logisco-single-nav logisco-single-nav-right">' . 
				'<span class="logisco-text logisco-title-font" >' . esc_html__( 'Next Post', 'logisco' ) . '</span>' . 
				'%link' . 
				'</span>',
				'<span class="logisco-single-nav-title logisco-title-font" >%title</span>'
			);
		}

		if( !empty($prev_post_html) || !empty($next_post_html) ){
			echo '<div class="logisco-single-nav-area clearfix" >' . $prev_post_html . $next_post_html . '<div class="logisco-single-nav-area-divider" ></div></div>';
		}
	}

	// author section
	$author_desc = get_the_author_meta('description');
	if( !empty($author_desc) && logisco_get_option('general', 'blog-author', 'enable') == 'enable' ){
		echo '<div class="logisco-single-author clearfix" >';
		echo '<div class="logisco-single-author-wrap" >';
		echo '<div class="logisco-single-author-avartar logisco-media-image">' . get_avatar(get_the_author_meta('ID'), 90) . '</div>';
		
		echo '<div class="logisco-single-author-content-wrap" >';
		echo '<div class="logisco-single-author-caption logisco-info-font" >' . esc_html__('About the author', 'logisco') . '</div>';
		echo '<h4 class="logisco-single-author-title">';
		the_author_posts_link();
		echo '</h4>';

		echo '<div class="logisco-single-author-description" >' . gdlr_core_escape_content(gdlr_core_text_filter($author_desc)) . '</div>';
		echo '</div>'; // logisco-single-author-content-wrap
		echo '</div>'; // logisco-single-author-wrap
		echo '</div>'; // logisco-single-author
	}

	// related post
	$enable_related_post = logisco_get_option('general', 'enable-related-post', 'enable');
	if( $enable_related_post == 'enable' && class_exists('gdlr_core_blog_style') ){
		
		$related_post_args = array(
			'blog-style' => logisco_get_option('general', 'related-post-blog-style', 'blog-column-with-frame'), // grid-with-frame
			'blog-column-style' => logisco_get_option('general', 'related-post-blog-column-style', 'style-2'), // grid-with-frame
			'thumbnail-size' => logisco_get_option('general', 'related-post-thumbnail-size', 'full'),
			'column-size' => logisco_get_option('general', 'related-post-column-size', '20'),
			'num-fetch' => logisco_get_option('general', 'related-post-num-fetch', '3'),
			'layout' => 'fitrows',
			'excerpt' => 'specify-number',
			'excerpt-number' => logisco_get_option('general', 'related-post-excerpt-number', '0'),
			'meta-option' => logisco_get_option('general', 'related-post-meta-option', array()),
			'frame-shadow-size' => array('x'=>'0', 'y'=>'0', 'size'=>'60px'),
			'frame-shadow-opacity' => '0.1',
			'frame-shadow-color' => '#000',
			'blog-title-font-size' => '14px'
		);

		// query related post
		$args = array('post_type' => 'post', 'suppress_filters' => false);
		$args['posts_per_page'] = $related_post_args['num-fetch'];
		$args['post__not_in'] = array(get_the_ID());
		$args['ignore_sticky_posts'] = 1;
		
		$related_terms = get_the_terms(get_the_ID(), 'post_tag');
		$related_tags = array();
		if( !empty($related_terms) ){
			foreach( $related_terms as $term ){
				$related_tags[] = $term->term_id;
			}
			$args['tax_query'] = array(array('terms'=>$related_tags, 'taxonomy'=>'post_tag', 'field'=>'id'));
		} 
		$query = new WP_Query($args);

		// print item
		if( $query->have_posts() ){

			$blog_style = new gdlr_core_blog_style();

			echo '<div class="logisco-single-related-post-wrap logisco-item-rvpdlr" >';
			echo '<h3 class="logisco-single-related-post-title logisco-item-mglr" >' . esc_html__('Related Posts', 'logisco') . '</h3>';
			
			$column_sum = 0;
			echo '<div class="gdlr-core-blog-item-holder clearfix" >';
			while( $query->have_posts() ){ $query->the_post();
				$additional_class  = ' gdlr-core-item-pdlr';
				$additional_class .= ' gdlr-core-column-' . $related_post_args['column-size'];

				if( $column_sum == 0 || $column_sum + intval($related_post_args['column-size']) > 60 ){
					$column_sum = intval($related_post_args['column-size']);
					$additional_class .= ' gdlr-core-column-first';
				}else{
					$column_sum += intval($related_post_args['column-size']);
				}
				echo '<div class="gdlr-core-item-list ' . esc_attr($additional_class) . '" >' . $blog_style->get_content($related_post_args) . '</div>';
			}
			echo '</div>'; // blog-item-holder
			echo '</div>'; // logisco-single-related-post-wrap

			wp_reset_postdata();
		}
	}

	// comments template
	if( comments_open() || get_comments_number() ){
		echo '<div class="logisco-comment-wrapper">';
		comments_template();
		echo '</div>';
	}	

	echo '</div>'; // logisco-content-area
	echo '</div>'; // logisco-get-sidebar-class

	// sidebar left
	if( $sidebar_type == 'left' || $sidebar_type == 'both' ){
		echo logisco_get_sidebar($sidebar_type, 'left', $sidebar_left);
	}

	// sidebar right
	if( $sidebar_type == 'right' || $sidebar_type == 'both' ){
		echo logisco_get_sidebar($sidebar_type, 'right', $sidebar_right);
	}

	echo '</div>'; // logisco-get-sidebar-wrap-class
 	echo '</div>'; // logisco-content-container

?>
© 2025 XylotrechusZ