mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Add avatar support to default theme.
git-svn-id: http://svn.automattic.com/wordpress/trunk@7360 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d3fbaa1d66
commit
d587b08c0b
@ -27,6 +27,7 @@
|
||||
<?php foreach ($comments as $comment) : ?>
|
||||
|
||||
<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
|
||||
<?php echo get_avatar( $comment, 32 ); ?>
|
||||
<cite><?php comment_author_link() ?></cite> Says:
|
||||
<?php if ($comment->comment_approved == '0') : ?>
|
||||
<em>Your comment is awaiting moderation.</em>
|
||||
|
@ -139,6 +139,13 @@ h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, #sidebar
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.commentlist li .avatar {
|
||||
float: right;
|
||||
border: 1px solid #eee;
|
||||
padding: 2px;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.commentlist cite, .commentlist cite a {
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
|
Loading…
Reference in New Issue
Block a user