Guest User

Untitled

a guest
Jan 17th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'post_type'=> 'forsale',
  4. 'p' => '12,16',
  5. 'orderby' => 'ID',
  6. 'post_status' => 'publish',
  7. 'order' => 'DESC',
  8. 'posts_per_page' => -1 // this will retrive all the post that is published
  9. );
  10. $result = new WP_Query( $args );
  11. if ( $result-> have_posts() ) : ?>
  12.  
  13. <table class="container">
  14.  
  15. <?php while ( $result->have_posts() ) : $result->the_post(); ?>
  16. <thead><tr><th><?php the_title(); ?></th></tr></thead>
  17. <tbody>
  18. <tr><td>Price</td><td><?php echo get_post_meta( get_the_ID(), 'price' ); ?></td><tr>
  19. <tr><td>Bed</td><td><?php get_post_meta( get_the_ID(), 'bed' ); ?></td><tr>
  20. </tbody>
  21. <?php endwhile; ?>
  22. </table>
  23. <?php endif;
  24. wp_reset_postdata(); ?>
Add Comment
Please, Sign In to add comment