Changeset 25625 for trunk/src/wp-content/themes/twentyeleven/category.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/category.php
r18291 r25625 1 1 <?php 2 2 /** 3 * T he template for displaying Category Archive pages.3 * Template for displaying Category Archive pages 4 4 * 5 5 * @package WordPress … … 22 22 <?php 23 23 $category_description = category_description(); 24 if ( ! empty( $category_description ) ) 24 if ( ! empty( $category_description ) ) { 25 /** 26 * Filter the default Twenty Eleven category description. 27 * 28 * @since Twenty Eleven 1.0 29 * 30 * @param string The default category description HTML. 31 */ 25 32 echo apply_filters( 'category_archive_meta', '<div class="category-archive-meta">' . $category_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 46 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
Note: See TracChangeset
for help on using the changeset viewer.