<?php
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
$args = array(
	'order' => 'asc',
	'orderby' => 'title',
	'category_name' => 'alps',
  	'posts_per_page' => 12,
  	'paged'          => $paged
);

$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() ?>"><?php echo get_post_meta( $post->ID, 'ip_name', true ) ; ?></a></h3>
			
			<h4><?php echo get_post_meta( $post->ID, 'ip_domain_name', true ) ; ?></h4>
			
			<?php html5wp_excerpt('html5wp_index'); ?>
			
			
			<div class="overbox-linkbox">
			<a class="overbox-linkbox-button" href="<?php the_permalink(); ?>">Read more</a>
			</div>
			

</div>
</div>

	 <?php endwhile; ?>
