Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2012
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Archives
  4. */
  5. ?>
  6.  
  7. <?php get_header();?>
  8.  
  9. <!-- begin colLeft -->
  10. <div id="colLeft">
  11.  
  12. <?php
  13. $posts_to_show = 50; //Max number of articles to display
  14. $debut = 0; //The first article to be displayed
  15. ?>
  16. <?php while(have_posts()) : the_post(); ?>
  17. <h2><?php the_title(); ?></h2>
  18. <ul>
  19. <?php
  20. $myposts = get_posts('numberposts=$posts_to_show&offset=$debut&posts_per_page=-1');
  21. foreach($myposts as $post) :
  22. ?>
  23. <li><?php the_time('d/m/y') ?>: <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  24.  
  25. <?php endforeach; ?>
  26. </ul>
  27.  
  28. <?php endwhile; ?>
  29.  
  30. </div>
  31. <!-- end colleft -->
  32.  
  33. <?php get_sidebar(); ?>
  34.  
  35. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement