wp/wp-content/themes/twentyfourteen/author.php
changeset 7 cf61fcea0001
parent 5 5e2f62d02dcd
equal deleted inserted replaced
6:490d5cc509ed 7:cf61fcea0001
    43 					 * the loop properly, in full.
    43 					 * the loop properly, in full.
    44 					 */
    44 					 */
    45 					rewind_posts();
    45 					rewind_posts();
    46 
    46 
    47 					// Start the Loop.
    47 					// Start the Loop.
    48 					while ( have_posts() ) : the_post();
    48 			while ( have_posts() ) :
       
    49 				the_post();
    49 
    50 
    50 						/*
    51 				/*
    51 						 * Include the post format-specific template for the content. If you want to
    52 				 * Include the post format-specific template for the content. If you want to
    52 						 * use this in a child theme, then include a file called called content-___.php
    53 				 * use this in a child theme, then include a file called content-___.php
    53 						 * (where ___ is the post format) and that will be used instead.
    54 				 * (where ___ is the post format) and that will be used instead.
    54 						 */
    55 				 */
    55 						get_template_part( 'content', get_post_format() );
    56 				get_template_part( 'content', get_post_format() );
    56 
    57 
    57 					endwhile;
    58 					endwhile;
    58 					// Previous/next page navigation.
    59 					// Previous/next page navigation.
    59 					twentyfourteen_paging_nav();
    60 					twentyfourteen_paging_nav();
    60 
    61