Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. <!-- Articles -->
  2. <div role="main">
  3. <h2 class="page-title">MOST RECENT</h2>
  4. <hr class="black">
  5.  
  6. <?php $args = array(
  7. 'post_type' => 'post',
  8. 'post_status' => 'publish',
  9. 'category_name' => 'home',
  10. 'order' => 'DESC',
  11. 'posts_per_page' => 100,
  12. 'paged' => get_query_var( 'paged' ),
  13. 'offset' => 1,
  14. );
  15. ?>
  16. <?php $arr_posts = new WP_Query( $args ); ?>
  17.  
  18. <?php if ( $arr_posts->have_posts() ) : ?>
  19. <div id="full-post-list" class="row between-xs">
  20. <?php while ( $arr_posts->have_posts() ) : $arr_posts->the_post(); ?>
  21. <div class="col-xs-12 col-md-5 mansory-card">
  22. <div class="box">
  23.  
  24. <div class="row middle-xs">
  25. <div class="col-xs-12 col-md-12">
  26. <div class="box">
  27. <a href="<?php the_permalink() ?>">
  28. <?php the_post_thumbnail('large', array('class' => 'home-thumb-img')); ?>
  29. </a>
  30. </div>
  31. </div>
  32. </div>
  33. <div class="row middle-xs thumb-home">
  34. <div class="col-xs-12 col-md-12">
  35. <div class="box mansory-text-box">
  36. <span class="mansory-title"><a href="<?php the_permalink() ?>"><?php echo wp_trim_words( get_the_title(), 5, null ); ?></a></span>
  37. <!-- Funzione PHP per generare numero random di views (mt_rand(1000,2000)) più visite effettive. Da disattivare dopo un mese dal deployment-->
  38. <p class="mansory-details"><!-- POSTED BY <a class="author-name" href="<?php /* echo get_author_posts_url( get_the_author_meta( 'ID' ), get_the_author_meta( 'user_nicename' ) ); ?>"><?php the_author(); */?></a> | --><span class="mansory-category"><?php the_category(', '); ?></span> | <?php echo get_the_date('F j, Y'); ?><!-- | <?php /* echo (mt_rand(1000,2000)) + wpp_get_views(get_the_ID()); */ ?> <i class="far fa-eye"></i> --></p>
  39. <p class="mansory-excerpt"><span class="preview-excerpt"><?php echo get_the_excerpt() ?></span><span class="read-more"><a href="<?php the_permalink() ?>"> Read more</a></span></p>
  40. <hr class="gray">
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. <?php endwhile; ?>
  47. </div>
  48.  
  49. </div><!-- #Articles -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement