Facebook Page

Click here now.

YouTube Channel

Click here now.

Send us a Mail

Click here now.

<?php $loop = new WP_Query( 
    array( 
        'post_type' => 'projets',
        'paged' => $paged,
        'category_name' => 'my_category_slug'
    ));

      if ( $loop->have_posts() ) :
        while ( $loop->have_posts() ) : $loop->the_post(); ?>

          <div class="col-md-4 col-sm-6 p-4">
            <div class="box">
             <a href="<?php the_permalink(); ?>"><h3> <?php the_title(); ?></h3></a>
            </div>
          </div> 

        <?php endwhile;
        if (  $loop->max_num_pages > 1 ) : ?>
          <div id="nav-below" class="navigation">
            <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Previous', 'domain' ) ); ?></div>
            <div class="nav-next"><?php previous_posts_link( __( 'Next <span class="meta-nav">&rarr;</span>', 'domain' ) ); ?></div>
          </div>

        <?php endif;
      endif;
      wp_reset_postdata();?>