Advertisement
alchymyth

page of posts 2012

Nov 16th, 2012
1,608
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.41 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Template Name: Page of Posts
  4.  *
  5.  * for a child theme of Twenty_Twelve
  6.  */
  7.  
  8. get_header(); ?>
  9.  
  10.     <div id="primary" class="site-content">
  11.         <div id="content" role="main">
  12.  
  13.         <?php
  14.             $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
  15.             $args= array(
  16.                 'category_name' => 'antiquarianism', // Change this category SLUG to suit your use; or see for query parameters http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
  17.                 'paged' => $paged
  18. );
  19.             query_posts($args);
  20.             if( have_posts() ) :?>
  21.  
  22.             <?php while ( have_posts() ) : the_post(); ?>
  23.                 <?php get_template_part( 'content', get_post_format() ); ?>
  24.                 <?php comments_template( '', true ); ?>
  25.             <?php endwhile; // end of the loop. ?>
  26.            
  27.             <?php twentytwelve_content_nav( 'nav-below' ); ?>
  28.            
  29.             <?php else : ?>
  30.             <article id="post-0" class="post no-results not-found">
  31.                 <header class="entry-header">
  32.                     <h1 class="entry-title"><?php _e( 'Nothing Found', 'twentytwelve' ); ?></h1>
  33.                 </header>
  34.                 <div class="entry-content">
  35.                     <p><?php _e( 'Apologies, but no results were found. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p>
  36.                     <?php get_search_form(); ?>
  37.                 </div><!-- .entry-content -->
  38.             </article><!-- #post-0 -->
  39.  
  40.             <?php endif; wp_reset_query(); ?>
  41.  
  42.         </div><!-- #content -->
  43.     </div><!-- #primary -->
  44.  
  45. <?php get_sidebar(); ?>
  46. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement