wp/wp-content/themes/twentytwelve/category.php
changeset 7 cf61fcea0001
parent 5 5e2f62d02dcd
equal deleted inserted replaced
6:490d5cc509ed 7:cf61fcea0001
    25 			<?php endif; ?>
    25 			<?php endif; ?>
    26 			</header><!-- .archive-header -->
    26 			</header><!-- .archive-header -->
    27 
    27 
    28 			<?php
    28 			<?php
    29 			/* Start the Loop */
    29 			/* Start the Loop */
    30 			while ( have_posts() ) : the_post();
    30 			while ( have_posts() ) :
       
    31 				the_post();
    31 
    32 
    32 				/* Include the post format-specific template for the content. If you want to
    33 				/* Include the post format-specific template for the content. If you want to
    33 				 * this in a child theme then include a file called called content-___.php
    34 				 * this in a child theme then include a file called content-___.php
    34 				 * (where ___ is the post format) and that will be used instead.
    35 				 * (where ___ is the post format) and that will be used instead.
    35 				 */
    36 				 */
    36 				get_template_part( 'content', get_post_format() );
    37 				get_template_part( 'content', get_post_format() );
    37 
    38 
    38 			endwhile;
    39 			endwhile;