Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <?php
  2.  
  3. $the_query = new WP_Query(array(
  4. 'posts_per_page' => 15,
  5. 'category_name' => 'jobs', // this is the category SLUG
  6. ));
  7. ?>
  8. <?php while ($the_query->have_posts()) : $the_query->the_post(); ?>
  9.  
  10. <h4><?php the_title(); ?></h4>
  11. <p><?php the_excerpt(); ?></p>
  12.  
  13. <a class="apply" href="<?php the_permalink($post->ID); ?>">Apply now</a>
  14.  
  15. <?php endwhile; ?>
  16.  
  17. <section class="content fullwidth">
  18. <div class="container single-career">
  19. <p><strong>Required Skills:</strong></p>
  20.  
  21. <p><strong>The Package:</strong></p>
  22.  
  23. </ul>
  24. <div class="career-meta">
  25. <a class="apply" href="">Apply</a>
  26. </div>
  27. </div>
  28. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement