Changeset 25625 for trunk/src/wp-content/themes/twentyeleven/tag.php
- Timestamp:
- 09/25/2013 04:49:36 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/tag.php
r18291 r25625 1 1 <?php 2 2 /** 3 * T he template used to display Tag Archive pages3 * Template used to display Tag Archive pages 4 4 * 5 5 * @package WordPress … … 22 22 <?php 23 23 $tag_description = tag_description(); 24 if ( ! empty( $tag_description ) ) 24 if ( ! empty( $tag_description ) ) { 25 /** 26 * Filter the default Twenty Eleven tag description. 27 * 28 * @since Twenty Eleven 1.0 29 * 30 * @param string The default tag description. 31 */ 25 32 echo apply_filters( 'tag_archive_meta', '<div class="tag-archive-meta">' . $tag_description . '</div>' ); 33 } 26 34 ?> 27 35 </header> … … 33 41 34 42 <?php 35 /* Include the Post-Format-specific template for the content. 43 /** 44 * Include the Post-Format-specific template for the content. 36 45 * If you want to overload this in a child theme then include a file 37 * called content-___.php (where ___ is the Post Format name) and that will be used instead. 46 * called content-___.php (where ___ is the Post Format name) and that 47 * will be used instead. 38 48 */ 39 49 get_template_part( 'content', get_post_format() );
Note: See TracChangeset
for help on using the changeset viewer.