AlkantarClanX12

Your IP : 18.217.4.250


Current Path : /home/thanudqk/siamfreetour.com/wp-content/themes/techup/template-parts/
Upload File :
Current File : /home/thanudqk/siamfreetour.com/wp-content/themes/techup/template-parts/content.php

<?php
/**
 * Template part for displaying posts
 *
 *
 * @subpackage techup
 * @since 1.0 
 */
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<article class="blog-item blog-2">
	<?php if(has_post_thumbnail()) : ?>
	<div class="post-img">
	   <?php techup_post_thumbnail(); ?>
	    <div class="date">
	        <?php techup_posted_on(); ?>
	    </div>
	</div>
<?php endif; ?>
	<ul class="post-meta">
	     <?php techup_posted_by(); ?>
	    <?php techup_post_comments(); ?>                                  
	    <?php if(!has_post_thumbnail()) : ?>
		<?php techup_posted_on(); ?>
		<?php endif; ?>

	</ul>
	<div class="post-content p-4 text-center">
	    <?php
		if ( is_singular() ) :
			the_title( '<h5>', '</h5>' );
		else :
			the_title( '<h5><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h5>' );
		endif;
		?>
	  <?php
        if( is_singular() ){
		the_content( sprintf(
			wp_kses(
				/* translators: %s: Name of current post. Only visible to screen readers */
				__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'techup' ),
				array(
					'span' => array(
						'class' => array(),
					),
				)
			),
			get_the_title()
		) );
        }else{
            the_excerpt();
        }

		wp_link_pages( array(
			'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'techup' ),
			'after'  => '</div>',
		) );
		?>
	    <a href="<?php the_permalink(); ?>" class="text-uppercase read-more"><?php echo esc_html__('Read More','techup'); ?></a>
	</div>
</article>
</div>