Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2.  
  3. function looptest_shortcode($atts){
  4. extract( shortcode_atts( array(
  5. 'expand' => '',
  6. ), $atts) );
  7. ob_start();
  8. $one = array(
  9. 'post_type' => 'post',
  10. 'post_status' => 'publish'
  11. );
  12. $the_query = new WP_Query($one); ?>
  13. <?php while ($the_query -> have_posts()) : $the_query -> the_post(); the_title(); the_content(); endwhile; wp_reset_postdata(); return ob_get_clean(); ?>
  14. <?php }
  15. add_shortcode('looptest_post', 'looptest_shortcode');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement