• Resolved Kettercat

    (@kettercat)


    Hi everyone,

    I’ve created a page template (under a childtheme for Twenty Twelve) that shows a list of posts under a specific category.
    Only it shows the entire posts, I want to show excerpts with links to the full post instead.

    Here’s what I have –

    <?php
    /**
     * Template Name: Page of Posts
     *
     * for a child theme of Twenty_Twelve
     */
    
    get_header(); ?>
    
    	<div id="primary" class="site-content">
    		<div id="content" role="main">
    
    		<?php
    			$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    			$args= array(
    				'category_name' => 'extra', // Change this category SLUG to suit your use; or see for query parameters http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
    				'paged' => $paged
    );
    			query_posts($args);
    			if( have_posts() ) :?>
    
    			<?php while ( have_posts() ) : the_post(); ?>
    				<?php get_template_part( 'content', get_post_format() ); ?>
    				<?php comments_template( '', false); ?>
    
    			<?php endwhile; // end of the loop. ?>
    
    			<?php twentytwelve_content_nav( 'nav-below' ); ?>
    
    			<?php else : ?>
    			<article id="post-0" class="post no-results not-found">
    				<header class="entry-header">
    					<h1 class="entry-title"><?php _e( 'No posts', 'twentytwelve' ); ?></h1>
    				</header>
    				<div class="entry-content">
    					<p><?php _e( 'No posts', 'twentytwelve' ); ?></p>
    					<?php get_search_form(); ?>
    				</div><!-- .entry-content -->
    			</article><!-- #post-0 -->
    
    			<?php endif; wp_reset_query(); ?>
    
    		</div><!-- #content -->
    	</div><!-- #primary -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    What do I do?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Twenty Twelve – show excerpts of posts?’ is closed to new replies.