<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(

'order' => 'asc',
'orderby' => 'title',
'posts_per_page' => 3,
'category_name' => 'holiday-offers',
'paged' => $paged

); ?>


<?php // the query
$the_query = new WP_Query( $args ); ?>



<!-- the loop -->
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?> 
		<div class="postsbycategory-box">	
			<?php the_post_thumbnail('img-postsbycategory'); ?>

<div class="postsbycategory-overbox">
			<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
			<?php echo the_date($Published); ?>
			<?php html5wp_excerpt('html5wp_index'); ?>
			
			<div class="read-more-container">
			<div class="read-more">
			<a href="<?php the_permalink(); ?>">See offers</a>
			</div>
			</div>


</div>
</div>	
	 <?php endwhile; ?>
