HEX
Server: Apache
System: Linux volt.webunbounded.cloud 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64
User: jengajungleco (1035)
PHP: 8.3.31
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/jengajungleco/public_html/wp-content/themes/grandrestaurant/blog_l.php
<?php
/**
 * Template Name: News Left Sidebar
 * The main template file for display blog page.
 *
 * @package WordPress
*/

/**
/**
*	Get Current page object
**/
if(!is_null($post))
{
	$page_obj = get_page($post->ID);
}

$current_page_id = '';

/**
*	Get current page id
**/

if(!is_null($post) && isset($page_obj->ID))
{
    $current_page_id = $page_obj->ID;
}

get_header(); 

$page_sidebar = get_post_meta($current_page_id, 'page_sidebar', true);

//If not select sidebar then select default one
if(empty($page_sidebar))
{
	$page_sidebar = 'Blog Sidebar';
}

$is_display_page_content = TRUE;
$is_standard_wp_post = FALSE;

if(is_tag())
{
    $is_display_page_content = FALSE;
    $is_standard_wp_post = TRUE;
    $page_sidebar = 'Tag Sidebar';
} 
elseif(is_category())
{
    $is_display_page_content = FALSE;
    $is_standard_wp_post = TRUE;
    $page_sidebar = 'Category Sidebar';
}
elseif(is_archive())
{
    $is_display_page_content = FALSE;
    $is_standard_wp_post = TRUE;
    $page_sidebar = 'Archives Sidebar';
} 

//Include custom header feature
get_template_part("/templates/template-header");
?>
    
    <div class="inner">

    	<!-- Begin main content -->
    	<div class="inner_wrapper">
    		
    			<?php if ( have_posts() && $is_display_page_content) while ( have_posts() ) : the_post(); ?>		

		    		<div class="page_content_wrapper"><?php the_content(); ?></div>
		
		    	<?php endwhile; ?>
		    	
		    	<div class="sidebar_wrapper left_sidebar">
    		
	    			<div class="sidebar_top"></div>
	    		
	    			<div class="sidebar">
	    			
	    				<div class="content">
	    			
	    					<?php 
							$page_sidebar = sanitize_title($page_sidebar);
							
							if (is_active_sidebar($page_sidebar)) { ?>
			    	    		<ul class="sidebar_widget">
			    	    		<?php dynamic_sidebar($page_sidebar); ?>
			    	    		</ul>
			    	    	<?php } ?>
	    				
	    				</div>
	    		
	    			</div>
	    			<br class="clear"/>
	    	
	    			<div class="sidebar_bottom"></div>
	    		</div>

    			<div class="sidebar_content left_sidebar">
					
<?php

if(is_front_page())
{
    $paged = (get_query_var('page')) ? get_query_var('page') : 1;
}
else
{
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
}

//If theme built-in blog template then add query
if(!$is_standard_wp_post)
{
    $query_string ="post_type=post&paged=$paged&suppress_filters=0";
    query_posts($query_string);
}

global $wp_query;
$post_counter = 0;
$post_counts = $wp_query->post_count;

if (have_posts()) : while (have_posts()) : the_post();

	$image_thumb = '';
								
	if(has_post_thumbnail(get_the_ID(), 'large'))
	{
	    $image_id = get_post_thumbnail_id(get_the_ID());
	    $image_thumb = wp_get_attachment_image_src($image_id, 'large', true);
	}
	
	$post_counter++;
?>

<!-- Begin each blog post -->
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

	<div class="post_wrapper">
	    
	    <div class="post_content_wrapper">
		    
		    <?php
		    	//Check post format
		    	$post_format = get_post_format(get_the_ID());
				
				switch($post_format)
				{
					case 'quote':
			?>
					
					<div class="post_quote_title">
					    <a href="<?php the_permalink(); ?>"><?php the_content(); ?></a>
					    <div class="post_detail">
				    		<span class="post_info_date">
					    		<?php echo get_the_time(THEMEDATEFORMAT); ?>
				    		</span>
				    		<span class="post_info_cat">
						    	<?php
						    		//Get Post's Categories
									$post_categories = wp_get_post_categories($post->ID);
									if(!empty($post_categories))
									{
								?>
									<?php echo _e( 'In', 'grandrestaurant' ); ?>
								<?php
								    	foreach($post_categories as $c)
								    	{
								    		$cat = get_category( $c );
								?>
								    	<a href="<?php echo esc_url(get_category_link($cat->term_id)); ?>"><?php echo esc_html($cat->name); ?></a>
								<?php
								    	}
								    }
								?>
				    		</span>
							<span class="post_info_comment">
				    	    	<a href="<?php comments_link(); ?>"><?php comments_number(__('No Comment', 'grandrestaurant'), __('1 Comment', 'grandrestaurant'), __('% Comments', 'grandrestaurant')); ?></a>
				        	</span>
				        	<span class="post_readmore">
				        		<a class="readmore" href="<?php the_permalink(); ?>"><?php echo _e( 'Read More', 'grandrestaurant' ); ?></a>
				        	</span>
						</div>
					</div>
			<?php
					break;
					
					case 'link':
			?>
					
					<div class="post_quote_title">
					    <?php the_content(); ?>
					    <div class="post_detail">
				    		<span class="post_info_date">
					    		<?php echo get_the_time(THEMEDATEFORMAT); ?>
				    		</span>
				    		<span class="post_info_cat">
						    	<?php
						    		//Get Post's Categories
									$post_categories = wp_get_post_categories($post->ID);
									if(!empty($post_categories))
									{
								?>
									<?php echo _e( 'In', 'grandrestaurant' ); ?>
								<?php
								    	foreach($post_categories as $c)
								    	{
								    		$cat = get_category( $c );
								?>
								    	<a href="<?php echo esc_url(get_category_link($cat->term_id)); ?>"><?php echo esc_html($cat->name); ?></a>
								<?php
								    	}
								    }
								?>
				    		</span>
							<span class="post_info_comment">
				    	    	<a href="<?php comments_link(); ?>"><?php comments_number(__('No Comment', 'grandrestaurant'), __('1 Comment', 'grandrestaurant'), __('% Comments', 'grandrestaurant')); ?></a>
				        	</span>
				        	<span class="post_readmore">
				        		<a class="readmore" href="<?php the_permalink(); ?>"><?php echo _e( 'Read More', 'grandrestaurant' ); ?></a>
				        	</span>
						</div>
					</div>
			<?php
					break;
					
					default:
		    ?>
		    
			    <div class="post_header">
			    	<div class="post_header_title">
				    	<h5><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h5>
				    	<div class="post_detail">
				    		<span class="post_info_date">
					    		<?php echo get_the_time(THEMEDATEFORMAT); ?>
				    		</span>
				    		<span class="post_info_cat">
						    	<?php
						    		//Get Post's Categories
									$post_categories = wp_get_post_categories($post->ID);
									if(!empty($post_categories))
									{
								?>
									<?php echo _e( 'In', 'grandrestaurant' ); ?>
								<?php
								    	foreach($post_categories as $c)
								    	{
								    		$cat = get_category( $c );
								?>
								    	<a href="<?php echo esc_url(get_category_link($cat->term_id)); ?>"><?php echo esc_html($cat->name); ?></a>
								<?php
								    	}
								    }
								?>
				    		</span>
							<span class="post_info_comment">
				    	    	<a href="<?php comments_link(); ?>"><?php comments_number(__('No Comment', 'grandrestaurant'), __('1 Comment', 'grandrestaurant'), __('% Comments', 'grandrestaurant')); ?></a>
				        	</span>
				        	<span class="post_readmore">
				        		<a class="readmore" href="<?php the_permalink(); ?>"><?php echo _e( 'Read More', 'grandrestaurant' ); ?></a>
				        	</span>
						</div>
			    	</div>
					
					<?php
					    //Get post featured content
					    $post_ft_type = get_post_meta(get_the_ID(), 'post_ft_type', true);
					    
					    switch($post_ft_type)
					    {
					    	case 'Image':
					    	default:
					        	if(!empty($image_thumb))
					        	{
					        		//Check if has new defined post thumbnail
						        	if(has_image_size('grandrestaurant-blog'))
						        	{
							        	$small_image_url = wp_get_attachment_image_src($image_id, 'grandrestaurant-blog', true);
						        	}
						        	//If not fallback to original theme defined size
						        	else
						        	{
					        			$small_image_url = wp_get_attachment_image_src($image_id, 'blog', true);
					        		}
					        		$image_alt = get_post_meta($image_id, '_wp_attachment_image_alt', true);
					?>
					
					    	    <div class="post_img static">
					    	    	<a href="<?php the_permalink(); ?>">
					    	    		<img src="<?php echo esc_url($small_image_url[0]); ?>" alt="<?php echo esc_attr($image_alt); ?>" class="" style="width:<?php echo esc_attr($small_image_url[1]); ?>px;height:<?php echo esc_attr($small_image_url[2]); ?>px;"/>
						            </a>
					    	    </div>
					
					<?php
					    		}
					    	break;
					    	
					    	case 'Vimeo Video':
					    		$post_ft_vimeo = get_post_meta(get_the_ID(), 'post_ft_vimeo', true);
					?>
					    		<?php echo do_shortcode('[tg_vimeo video_id="'.$post_ft_vimeo.'" width="670" height="377"]'); ?>
					    		<br/>
					<?php
					    	break;
					    	
					    	case 'Youtube Video':
					    		$post_ft_youtube = get_post_meta(get_the_ID(), 'post_ft_youtube', true);
					?>
					    		<?php echo do_shortcode('[tg_youtube video_id="'.$post_ft_youtube.'" width="670" height="377"]'); ?>
					    		<br/>
					<?php
					    	break;
					    	
					    	case 'Gallery':
					    		$post_ft_gallery = get_post_meta(get_the_ID(), 'post_ft_gallery', true);
					?>
					    		<?php echo do_shortcode('[tg_gallery_slider gallery_id="'.$post_ft_gallery.'" width="670" height="270"]'); ?>
					    		<br/>
					<?php
					    	break;
					    	
					    } //End switch
					?>
					
					<br class="clear"/>
				    
				    <?php
				    	$tg_blog_display_full = get_theme_mod('tg_blog_display_full', 0);
				    	
				    	if(!empty($tg_blog_display_full))
				    	{
				    		the_content();
				    	}
				    	else
				    	{
				    		the_excerpt();
				    	}
				    ?>
			    </div>
		    <?php
		    		break;
		    	}
		    
				//Check if display social sharing
		    	global $share_id;
		    	global $share_class;
				$share_id = 'share_post_'.$post->ID;
				$share_class = 'inline';
			?>
			<div class="post_share_bubble">
			<?php		
					//Get Social Share
					get_template_part("/templates/template-share-blog");
		    ?>
		    	<a href="javascript:;" class="post_share" data-share="<?php echo esc_attr($share_id); ?>" data-parent="post-<?php the_ID(); ?>"><i class="fa fa-share-alt"></i></a>
			</div>
			
	    </div>
	    
	</div>

</div>
<br class="clear"/>
<!-- End each blog post -->

<?php endwhile; endif; ?>

    	<?php
		    if($wp_query->max_num_pages > 1)
		    {
		    	if (function_exists("wpapi_pagination")) 
		    	{
		?>
				<br class="clear"/>
		<?php
		    	    wpapi_pagination($wp_query->max_num_pages);
		    	}
		    	else
		    	{
		    	?>
		    	    <div class="pagination"><p><?php posts_nav_link(' '); ?></p></div>
		    	<?php
		    	}
		    ?>
		    <div class="pagination_detail">
		     	<?php
		     		$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
		     	?>
		     	<?php _e( 'Page', 'grandrestaurant' ); ?> <?php echo esc_html($paged); ?> <?php _e( 'of', 'grandrestaurant' ); ?> <?php echo esc_html($wp_query->max_num_pages); ?>
		     </div>
		     <?php
		     }
		?>
    		
    	</div>
    	
    </div>
    <!-- End main content -->

</div>  
<br class="clear"/><br/>
</div>
<?php get_footer(); ?>