Advertisement
Guest User

Untitled

a guest
Dec 11th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function cwf_enquiry_table_html()
  2. {
  3. $args = array(
  4. 'post_type' => 'form-enquiry'
  5. );
  6.  
  7. $form_enquiries = new WP_Query($args);
  8.  
  9. if($form_enquiries->have_posts())
  10. {
  11. while($form_enquiries->have_posts())
  12. {
  13. echo '<p>' . get_the_title() . '</p>';
  14. }
  15. }
  16.  
  17. // wp_reset_query();
  18. }
  19. add_shortcode('enquiry_table', 'cwf_enquiry_table_html');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement