Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
670
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.12 KB | None | 0 0
  1. <section class="container">
  2.   <h1 class="display-4 text-center mt-4">Day by Day</h1>
  3.  
  4. <div class="card-deck mt-5">
  5.  
  6. <?php
  7.  
  8. $args = array(
  9. 'post_type' => 'film',
  10. 'posts_per_page' => 8
  11. );
  12.  
  13. // La Query
  14. $aap_the_query = new WP_Query( $args  );
  15.  
  16. // Il Loop
  17. while ( $aap_the_query->have_posts() ) :
  18. $aap_the_query->the_post();?>
  19.  
  20.  
  21.  
  22. <div class="card card-news">
  23.     <?php the_post_thumbnail('aap_locandina', array('class' => 'img-fluid mb-4', 'alt' => get_the_title()));?>
  24.     <div class="card-body">
  25.       <h5 class="card-title"><?php the_title();?></h5>
  26.       <p class="card-text"><a href="<?php the_field('link_rassegna'); ?>"><?php the_field('link_rassegna'); ?></a></p>
  27.  
  28.  
  29.  
  30.       <p class="card-text"><a href="<?php the_field('link_luogo'); ?>"><?php the_field('link_luogo'); ?></a></p>
  31.       <p class="card-text"><i class="far fa-calendar-check"></i> <?php the_field('data'); ?></p>
  32.       <p class="card-text"><i class="far fa-clock"></i> <?php the_field('ora'); ?></p>
  33.   </div>
  34. </div>
  35.  
  36.  
  37.  
  38.  
  39. <?php endwhile;
  40. // Ripristina Query & Post Data originali
  41. wp_reset_query();
  42. wp_reset_postdata();  ?>
  43. </div>
  44. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement