Konu çok güzel hem arkadaşın konusunu güncellemiş olalım hemde işimizi görelim

masonry bir şekilde bu sayfadaki oyuncular bölümünü nasıl yaparım
http://www.ajeoshi.com/category/ulke...dizi-oyuncular

height:100%; yaptığımda çok boşluk oluyor yardımlarınızı bekliyorum

oyuncular-archive.php

<?php get_header(); ?>
 <div class="main-content row">
<?php get_sidebar(); ?>
				<div class="right-content col-md-10">
                                        <div class="row">
                        <div class="col col-lg-12 col-md-12 col-sm-12 col-xs-12">
						<h2><?php single_cat_title ();?></h2>
                            <div class="content-list row">
                                <?php query_posts($query_string .  '&posts_per_page=5&orderby=date&showposts=18'); ?> <!--kategoriye tıklanınca kaç konu listelensin-->
				
							
							<?php if (have_posts()) : ?>																				
								<?php while (have_posts()) : the_post(); ?>
								<?php $second_query = new WP_Query('order=ASC'); // exclude category ?>   
                        <div class="col-lg-2 col-md-2 col-sm-3 col-xs-6 box">
                                   
									
									<div class="thumbnail">
                                        <a href="<?php the_permalink() ?>"><img src="<?php echo get_post_meta($post->ID, "resim", true); ?>" alt="<?php the_title(); ?>"></a>
                                        <div class="caption">
                                            <p><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></p>
                                        </div>
                                    </div>
									
                                </div><!--box-->
 
										<?php endwhile; ?>	<?php endif; ?>							
                              
 
                            </div>
							
							<div class="content-list row">                            </div><!--content-list-->
                        </div><!--col-->

                    </div><!--row-->
                                        
<?php wp_pagenavi(); ?>

										</div><!--right-content-->

            
		<?php get_footer(); ?>