PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/eastfin/wp-content/themes/kingdom/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //home/trave494/eastfin/wp-content/themes/kingdom/template-blog.php

<?php  
/**
 * @package WordPress
 * @subpackage:
 *	Name: 	kingdom Amazon Affiliate Theme
 *	Alias: 	kingdom
 *	Author: FG
 *	Name: 	http://themeforest.net/user/FG/portfolio
 *  Template Name: Template Blog
 *	
**/
get_header();
global $tag, $cat; 
?>
	<div class="container">
		<div class="row">
			<?php kingdom()->coreFunctions->printSidebar( 'left' ); ?>
			
			<!-- Main Container -->
			<section class="<?php echo esc_attr( kingdom()->coreFunctions->content_class() );?>">
				<?php
				$args = array(
					'post_type' => 'post',
					'paged' => $paged,
				);
				
				if( isset($tag) && trim($tag) != "" ){
					$args['tag'] = $tag;
				}
				if( isset($cat) && trim($cat) != "" ){
					$args['cat'] = $cat;
				}
				query_posts($args);
				?>
				<?php if ( have_posts() ) : ?>
				
				<div class="blog-box">
					<?php while( have_posts() ) : the_post(); ?>
					
					<div class="kd_simple_post">
						
						<?php
						if( has_post_thumbnail() ) {
						?>
							<div class="kd_simple_post_image kd_hovereffect">
								<a href="<?php echo esc_url( get_the_permalink() ); ?>">
									<?php echo get_the_post_thumbnail( $post->ID, 'kingdom_blog-featured-image' ); ?>
									<div class="mask">
									 	<div class="kd_bk_icon">
											<i class="icon icon_hover"></i>
										</div>
									</div>
								</a>
							</div>
						<?php } ?>
						
						<div class="kd_simple_post_description <?php echo has_post_thumbnail() == false ? 'full' : '';?> ">
							<h1><a href="<?php echo esc_url( get_the_permalink() ); ?>"><?php the_title(); ?></a></h1>
							<input class="rating" data-max="5" data-min="1" name="rating" type="number" value="" />
							<p><span><?php echo get_the_date(); ?> / <?php comments_number( 'no comments', 'one comment', '% comments' ); ?>, <?php esc_html_e('on', 'kingdom'); ?> <?php the_category(', ', 'multiple'); ?></span></p>
							<div class="kd_blog_short_desc"><?php the_excerpt(); ?></div>
							<a href="<?php echo esc_url( get_the_permalink() ); ?>" class="kd_read_more"> <?php esc_html_e('Read More', 'kingdom'); ?> <sup>+</sup> </a>
						</div>
					</div>
					
					<div class="clearfix"></div>
					<hr class="kd_line"/>
					<?php endwhile; ?>
				</div>
			
				<div class="clearfix"></div>

				<?php if( $wp_query->post_count < $wp_query->found_posts ) { ?>
				<div class="row-fluid">
					<!-- Pagination -->
					<div class="pagination-container">
						<div class="pagination-left">
							<?php previous_posts_link( '<i class="first-arrow"></i>' . esc_html__('Newer', 'kingdom' ) ); ?>
						</div>
						<div class="pagination-right">
							<?php next_posts_link( '<i class="last-arrow"></i>' . esc_html__('Older', 'kingdom' ) ); ?>
						</div>
					</div>
				</div>
				<?php } ?>
				
				<?php wp_reset_query(); ?>
				<?php else : ?>
					<?php get_template_part( 'template', 'none' ); ?>
				<?php endif; ?>
			</section>
			
			<?php kingdom()->coreFunctions->printSidebar( 'right' ); ?>
		</div>
	</div>

<?php get_footer(); ?>