Advertisement
nshelper

Untitled

Nov 3rd, 2023
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. $args = array(
  5. 'post_type' => 'custom_post_type',
  6. 'tax_query' => array(
  7. array(
  8. 'taxonomy' => 'people',
  9. 'field' => 'slug',
  10. 'terms' => 'bob',
  11. ),
  12. ),
  13. );
  14. $query = new WP_Query( $args );
  15. while ( $query->have_posts() )
  16. {
  17. $query->the_post();
  18.  
  19. echo '<h1>' . $post->post_title. '</h1';
  20.  
  21.  
  22. }
  23.  
  24.  
  25. ?>
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement