Make WordPress Core

Changeset 14084


Ignore:
Timestamp:
04/13/2010 11:41:13 PM (14 years ago)
Author:
iammattthomas
Message:

Links on dates in Twenty Ten back by popular demand. Fixes #12925.

File:
1 edited

Legend:

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

    r14083 r14084  
    4040        <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    4141            <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
     42
    4243            <div class="entry-meta">
    4344                <?php
    44                     printf( __( '<span class="meta-prep meta-prep-author">Posted on </span><abbr title="%1$s"><span class="entry-date">%2$s</span></abbr> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%3$s" title="%4$s">%5$s</a></span>', 'twentyten' ),
     45                    printf( __( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyten' ),
     46                        get_permalink(),
    4547                        esc_attr( get_the_time() ),
    4648                        get_the_date(),
     
    9698            <div class="entry-utility">
    9799                <?php
    98                     printf( __( '<span class="meta-prep meta-prep-author">Posted on </span><abbr title="%1$s"><span class="entry-date">%2$s</span></abbr> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%3$s" title="%4$s">%5$s</a></span>', 'twentyten' ),
     100                    printf( __( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyten' ),
     101                        get_permalink(),
    99102                        esc_attr( get_the_time() ),
    100103                        get_the_date(),
     
    117120            <div class="entry-meta">
    118121                <?php
    119                     printf( __( '<span class="meta-prep meta-prep-author">Posted on </span><abbr title="%1$s"><span class="entry-date">%2$s</span></abbr> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%3$s" title="%4$s">%5$s</a></span>', 'twentyten' ),
     122                    printf( __( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyten' ),
     123                        get_permalink(),
    120124                        esc_attr( get_the_time() ),
    121125                        get_the_date(),
Note: See TracChangeset for help on using the changeset viewer.