|
@@ -294,12 +294,11 @@ endif;
|
|
|
if ( ! function_exists( 'dw_comment' ) ) :
|
|
|
function dw_comment( $comment, $args, $depth ) {
|
|
|
$GLOBALS ['comment'] = $comment; ?>
|
|
|
- <?php if ( '' == $comment->comment_type ) : ?>
|
|
|
+ <?php if (get_comment_type() == 'comment') : ?>
|
|
|
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
|
|
|
<div id="comment-<?php comment_ID(); ?>">
|
|
|
<div class="comment-author vcard">
|
|
|
- <?php echo get_avatar( $comment, 64 ); ?>
|
|
|
- <?php printf( __( '<cite class="fn">%s</cite><span class="says">:</span>', 'daw' ), get_comment_author_link() ); ?>
|
|
|
+ <?php printf( __( '<cite class="">%s</cite><span class="says">:</span>', 'daw' ), get_comment_author_link() ); ?>
|
|
|
</div>
|
|
|
<?php if ( $comment->comment_approved == '0' ) : ?>
|
|
|
<em><?php _e( 'Your comment is awaiting moderation.', 'daw' ); ?></em>
|