Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentyten/loop.php

    r14932 r15222  
    6767
    6868            <div class="entry-content">
     69<?php if ( post_password_required() ) : ?>
     70                <?php the_content(); ?>
     71<?php else : ?>
    6972                <div class="gallery-thumb">
    7073<?php
     
    8285
    8386                <?php the_excerpt( '' ); ?>
     87<?php endif; ?>
    8488            </div><!-- .entry-content -->
    8589
     
    139143                <?php if ( count( get_the_category() ) ) : ?>
    140144                    <span class="cat-links">
    141                         <span class="entry-utility-prep entry-utility-prep-cat-links"><?php printf( __('Posted in %s', 'twentyten' ), '</span> ' . get_the_category_list( ', ' ) ); ?>
     145                        <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
    142146                    </span>
    143147                    <span class="meta-sep">|</span>
     
    148152                ?>
    149153                    <span class="tag-links">
    150                         <span class="entry-utility-prep entry-utility-prep-tag-links"><?php printf( __('Tagged %s', 'twentyten'), '</span> ' . $tags_list ); ?>
     154                        <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
    151155                    </span>
    152156                    <span class="meta-sep">|</span>
Note: See TracChangeset for help on using the changeset viewer.