A couple more hCard CSS classes for comments from wnorris. fixes #8264
git-svn-id: http://svn.automattic.com/wordpress/trunk@9764 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
17881fddec
commit
e3c5f05f3c
|
@ -139,7 +139,7 @@ function get_comment_author_link() {
|
|||
if ( empty( $url ) || 'http://' == $url )
|
||||
$return = $author;
|
||||
else
|
||||
$return = "<a href='$url' rel='external nofollow'>$author</a>";
|
||||
$return = "<a href='$url' rel='external nofollow' class='url'>$author</a>";
|
||||
return apply_filters('get_comment_author_link', $return);
|
||||
}
|
||||
|
||||
|
@ -1149,7 +1149,7 @@ class Walker_Comment extends Walker {
|
|||
<?php endif; ?>
|
||||
<div class="comment-author vcard">
|
||||
<?php if ($args['avatar_size'] != 0) echo get_avatar( $comment, $args['avatar_size'] ); ?>
|
||||
<?php printf(__('<cite>%s</cite> Says:'), get_comment_author_link()) ?>
|
||||
<?php printf(__('<cite class="fn">%s</cite> Says:'), get_comment_author_link()) ?>
|
||||
</div>
|
||||
<?php if ($comment->comment_approved == '0') : ?>
|
||||
<em><?php _e('Your comment is awaiting moderation.') ?></em>
|
||||
|
@ -1281,4 +1281,4 @@ function wp_list_comments($args = array(), $comments = null ) {
|
|||
$wp_query->max_num_comment_pages = $walker->max_pages;
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
||||
|
|
|
@ -1535,9 +1535,9 @@ function get_avatar( $id_or_email, $size = '96', $default = '', $alt = false ) {
|
|||
if ( !empty( $rating ) )
|
||||
$out .= "&r={$rating}";
|
||||
|
||||
$avatar = "<img alt='{$safe_alt}' src='{$out}' class='avatar avatar-{$size}' height='{$size}' width='{$size}' />";
|
||||
$avatar = "<img alt='{$safe_alt}' src='{$out}' class='avatar avatar-{$size} photo' height='{$size}' width='{$size}' />";
|
||||
} else {
|
||||
$avatar = "<img alt='{$safe_alt}' src='{$default}' class='avatar avatar-{$size} avatar-default' height='{$size}' width='{$size}' />";
|
||||
$avatar = "<img alt='{$safe_alt}' src='{$default}' class='avatar avatar-{$size} photo avatar-default' height='{$size}' width='{$size}' />";
|
||||
}
|
||||
|
||||
return apply_filters('get_avatar', $avatar, $id_or_email, $size, $default, $alt);
|
||||
|
|
Loading…
Reference in New Issue