<?php
$args = array(


'orderby' => 'rand',
'posts_per_page' => 5,
'tag' => 'Grand-Massif',


); ?>

<?php // the query
remove_all_filters('posts_orderby');
$the_query = new WP_Query( $args ); ?>

<!-- the loop -->
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?> 
	
	<div class="postsbycategory-box-small">
			
		<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('img-postsbycategory'); ?></a>

		<div class="postsbycategory-overbox-small">
		<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
				
		<?php html5wp_excerpt('html5wp_index'); ?>
				
		<div class="overbox-linkbox-button-small">
			
		<a href="<?php the_permalink(); ?>">Go</a>
			
		</div>	

		</div>

	</div>


<?php endwhile;  wp_reset_postdata(); ?>