Advertisement
Deeproad

WordPress template code

Nov 25th, 2014
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div id="container"><div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  3. <?php query_posts('showposts=-1&orderby=post_date&order=ASC'); ?>
  4. <h2><?php the_title(); ?></h2>
  5. <div class="entry">
  6. <ul class="archivelist">
  7. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  8. <li>&bull;&nbsp;&nbsp;<a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
  9. <?php endwhile; endif; ?>
  10. </ul>
  11. </div>
  12. </div></div>
  13. <?php get_sidebar(); ?>
  14. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement