Advertisement
sqrbrkt

Untitled

Jun 9th, 2011
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. /* Template Name: Vicinity Page */
  4. get_header(); ?>
  5.  
  6. <?php
  7.     global $query_string;
  8.     query_posts("post_type=attractions&post_status=publish");
  9.    
  10.     if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  11.    
  12.         <h2>
  13.             <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
  14.         </h2>
  15.        
  16.     <?php
  17.         the_content();
  18.  
  19.     endwhile;
  20.     endif;
  21.  
  22. wp_reset_query();
  23.  
  24. get_footer();
  25.  
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement