Make WordPress Core


Ignore:
Timestamp:
05/04/2011 10:54:50 PM (14 years ago)
Author:
lancewillett
Message:

Twenty Eleven updates and fixes, see #17198

  • Add explanatory comments in all templates, following Twenty Ten's example
  • Stick with twentyeleven_ for prefixing filter names
  • Use post format content templates in search results
  • First pass at adding a template for adding a sidebar to pages
  • Add a featured post header to standard sticky posts
  • Style fixes: print media, comment styles for pages with sidebars, color of meta links on image post format
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentyeleven/tag.php

    r17787 r17802  
    2828                <?php while ( have_posts() ) : the_post(); ?>
    2929
    30                     <?php get_template_part( 'content', get_post_format() ); ?>
     30                    <?php
     31                        /* Include the Post-Format-specific template for the content.
     32                         * If you want to overload this in a child theme then include a file
     33                         * called loop-___.php (where ___ is the Post Format name) and that will be used instead.
     34                         */
     35                        get_template_part( 'content', get_post_format() );
     36                    ?>
    3137
    3238                <?php endwhile; ?>
Note: See TracChangeset for help on using the changeset viewer.