
            <div class="allMedia">
              
                     <?php
                    $args = array (
                        'post_type' => 'post',
                        'posts_per_page' => 50,
                        'order' => 'DESC',
                        
                        
                    );
                    $query = new WP_Query( $args );
                    ?>

                    <ul class="slider01 mediaBox carousel">
                        <?php while($query->have_posts()) : $query->the_post(); ?>
                        <li class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
                            <div class="fullbox">
                                <div class="img_con">
                                 <?php the_post_thumbnail(); ?>
                                </div>
                                <div class="content">
                                    <h3><?php the_title(); ?></h3>     
                                   <?php the_excerpt(); ?>
                                    <div class="kc-pro-button kc-button-2 comBtn">
                                     <?php 
                                    	$client_url = get_post_meta( get_the_ID(), 'client_url', true);
                                     
                                    	if( ! empty( $client_url ) ) {
                                    		echo '<a href=' . $client_url . ' target="_blank">Read More</a>';
                                    	}
                                      ?>
                                    </div>
                                </div>
                            </div>
                        </li>
                        <?php endwhile; ?> 
                        </ul>
                    <?php wp_reset_postdata(); ?>   
                    
                    
            
           </div>    
