Advertisement
Guest User

Untitled

a guest
Jan 25th, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. function twentyten_comment( $comment, $args, $depth ) {
  2. $GLOBALS['comment'] = $comment;
  3. switch ( $comment->comment_type ) :
  4. case '' :
  5. ?>
  6. <li <?php comment_class="<?php if ($comment->comment_author_email == "caroline@makeupedia.se") echo 'author'; else echo 'user'; ?>"
  7.  
  8. <div id="comment-<?php comment_ID(); ?>">
  9. <div class="comment-author vcard">
  10. <?php echo get_avatar( $comment, 40 ); ?>
  11. <?php printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
  12. </div><!-- .comment-author .vcard -->
  13. <?php if ( $comment->comment_approved == '0' ) : ?>
  14. <em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentyten' ); ?></em>
  15. <br />
  16. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement