Advertisement
Guest User

Untitled

a guest
Nov 20th, 2011
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Template Name: Test
  4.  */
  5.  
  6. get_header();
  7. ?>
  8.  
  9.         <div id="container-onecolumn">
  10.             <div id="content" role="main"> 
  11.            
  12.                 <?php
  13.                 query_posts('letter=A');
  14.                 while (have_posts()) : the_post();
  15.                  the_title();
  16.                 endwhile;
  17.                 ?>             
  18.  
  19.             </div><!-- #content -->
  20.            
  21.         </div><!-- #container -->
  22.  
  23.    
  24. <div style="clear:both;"></div>
  25.  
  26. <?php get_footer(); ?>
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement