Changeset 42343 for trunk/src/wp-content/themes/twentyfourteen/tag.php
- Timestamp:
- 11/30/2017 11:09:33 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/tag.php
r41349 r42343 25 25 // Show an optional term description. 26 26 $term_description = term_description(); 27 28 27 if ( ! empty( $term_description ) ) : 28 printf( '<div class="taxonomy-description">%s</div>', $term_description ); 29 29 endif; 30 30 ?> … … 33 33 <?php 34 34 // Start the Loop. 35 while ( have_posts() ) : the_post(); 35 while ( have_posts() ) : 36 the_post(); 36 37 37 38 39 40 41 42 38 /* 39 * Include the post format-specific template for the content. If you want to 40 * use this in a child theme, then include a file called content-___.php 41 * (where ___ is the post format) and that will be used instead. 42 */ 43 get_template_part( 'content', get_post_format() ); 43 44 44 45 endwhile;
Note: See TracChangeset
for help on using the changeset viewer.