Advertisement
Guest User

custom_body.php

a guest
May 22nd, 2014
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <?php require('blog/wp-blog-header.php');?>
  2.  
  3. <!-- INCLUDE overall_header.html -->
  4.  
  5. <h2>Test</h2>
  6.  
  7. <div class="panel">
  8. <div class="inner"><span class="corners-top"><span></span></span>
  9.  
  10. <div class="content">
  11.  
  12.  
  13. <?php
  14. $args = array( 'numberposts' => 6, 'post_status'=>"publish",'post_type'=>"post",'orderby'=>"post_date");
  15. $postslist = get_posts( $args );
  16.  
  17. foreach ($postslist as $post) : setup_postdata($post); ?>
  18. <div class="events">
  19. <p><strong><?php the_date(); ?></strong></p>
  20. <p><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></p>
  21. </div>
  22. <?php endforeach; ?>
  23. </div>
  24.  
  25. <span class="corners-bottom"><span></span></span></div>
  26. </div>
  27.  
  28. <!-- INCLUDE jumpbox.html -->
  29. <!-- INCLUDE overall_footer.html -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement