Advertisement
Guest User

Untitled

a guest
Sep 30th, 2021
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <?php
  2. get_header('topbar'); ?>
  3. <div class="blog_container">
  4. <h2 class="blog-title">Latest News</h2>
  5. <p>News information and much more.</p>
  6. </div>
  7. <?php
  8. // the query
  9. $the_query = new WP_Query(array(
  10. 'category_name' => 'my-category-slug',
  11. 'post_status' => 'publish',
  12. 'posts_per_page' => 6,
  13. ));
  14. ?>
  15. <?php if ($the_query->have_posts()) : ?>
  16. <?php while ($the_query->have_posts()) : $the_query->the_post(); ?>
  17. <?php the_category(', '); ?>
  18. <?php the_title(); ?>
  19. <?php the_excerpt(); ?>
  20. <?php the_post_thumbnail(); ?>
  21. <?php the_content(); ?>
  22.  
  23. <div class="container bloglist">
  24. <div class="blog_list_outter">
  25. <div class="blog_author">
  26. <div class="author_image"><?php echo get_avatar( get_the_author_meta('ID'), 60); ?></div>
  27. </div>
  28. <div class="post-grid">
  29. <h2 class="blog_heading"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  30. <div class="category_title">
  31. <div class="category__list__card">
  32. <p class="cat"><?php echo get_the_category_list(', '); ?></p>
  33. </div>
  34. <div class="post__stamp">
  35. <?php the_time('F j, Y'); ?>
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. <?php
  42. endwhile;
  43. wp_reset_postdata();
  44. endif;
  45. get_footer();
  46. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement