Make WordPress Core


Ignore:
Timestamp:
11/18/2008 10:06:51 PM (17 years ago)
Author:
markjaquith
Message:

A couple more hCard CSS classes for comments from wnorris. fixes #8264

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/comment-template.php

    r9667 r9764  
    140140        $return = $author;
    141141    else
    142         $return = "<a href='$url' rel='external nofollow'>$author</a>";
     142        $return = "<a href='$url' rel='external nofollow' class='url'>$author</a>";
    143143    return apply_filters('get_comment_author_link', $return);
    144144}
     
    11501150        <div class="comment-author vcard">
    11511151        <?php if ($args['avatar_size'] != 0) echo get_avatar( $comment, $args['avatar_size'] ); ?>
    1152         <?php printf(__('<cite>%s</cite> Says:'), get_comment_author_link()) ?>
     1152        <?php printf(__('<cite class="fn">%s</cite> Says:'), get_comment_author_link()) ?>
    11531153        </div>
    11541154<?php if ($comment->comment_approved == '0') : ?>
Note: See TracChangeset for help on using the changeset viewer.