Guest User

Untitled

a guest
May 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <?php
  2. function post_shortcode($atts, $content= null ){
  3. extract(shortcode_atts(array(
  4. 'post_type' => "post",
  5. 'post_per_page' => 10
  6.  
  7. ), $atts));
  8. $get_post = new WP_Query(array(
  9. 'post_type' => 'page',
  10. 'post_per_page' => 5
  11. )); ?>
  12. <div class="content-wrap" style="background-color:#2E3539; padding: 80px 0; color: #ddd;">
  13. <div class="container">
  14. <div class="row">
  15. <?php while($get_post->have_posts()): $get_post->the_post(); ?>
  16. <div class="col-lg-6">
  17. <div class="post-content" style="padding:80px 0px;">
  18. <h2><?php the_title(); ?></h2>
  19. <p><?php the_content(); ?></p>
  20. </div>
  21. </div>
  22. <?php endwhile; ?>
  23. </div>
  24. </div>
  25. </div>
  26.  
  27. <?php
  28.  
  29. }
  30. add_shortcode('post_content', 'post_shortcode');
  31. ?>
Add Comment
Please, Sign In to add comment