// Comentarios
function custom_comment($comment, $args, $depth) {
$GLOBALS['comment'] = $comment; ?>
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID()
?>">
<div id="comment-<?php comment_ID(); ?>" class="comment-body">
<ul class="comment-author vcard">
<?php printf(__('<li><cite class="fn">%s</cite></li>'),
get_comment_author_link()) ?>
<li class="comment-meta commentmetadata">
<a href="<?php echo htmlspecialchars( get_comment_link(
$comment->comment_ID ) ) ?>"><?php printf(__('%1$s at
%2$s'), get_comment_date(), get_comment_time()) ?></a>
<?php edit_comment_link(__('(Edit)'),' ','') ?>
</li>
</ul>
<?php comment_text() ?>
<div class="reply">
<?php comment_reply_link(array_merge( $args, array('depth'
=> $depth, 'max_depth' => $args['max_depth']))) ?>
</div>
</div>
<?php if ($comment->comment_approved == '0') : ?>
<em><?php _e('Your comment is awaiting moderation.') ?></em>
<br />
<?php endif; ?>
<?php
}