mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Avatar support for classic theme
git-svn-id: http://svn.automattic.com/wordpress/trunk@7361 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d587b08c0b
commit
c7d6a001d0
@ -13,6 +13,7 @@
|
||||
|
||||
<?php foreach ($comments as $comment) : ?>
|
||||
<li id="comment-<?php comment_ID() ?>">
|
||||
<?php echo get_avatar( $comment, 32 ); ?>
|
||||
<?php comment_text() ?>
|
||||
<p><cite><?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> — <?php comment_date() ?> @ <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php edit_comment_link(__("Edit This"), ' |'); ?></p>
|
||||
</li>
|
||||
|
@ -160,6 +160,13 @@ ul.post-meta span.post-meta-key {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
#commentlist li .avatar {
|
||||
float: right;
|
||||
margin-right: 25px;
|
||||
border: 1px dotted #ccc;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#content {
|
||||
margin: 30px 13em 0 3em;
|
||||
padding-right: 60px;
|
||||
|
Loading…
Reference in New Issue
Block a user