Claro,
Tente modificar o seu arquivo comments.php por um padrão que esteja funcionando.
Não esqueça de fazer um backup do antigo.
Aqui segue um exemplo:
<?php // Não delete estas linhas
if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
die ('Please do not load this page directly. Thanks!');
if (!empty($post->post_password)) { // Se for protegido por senha
if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { ?>
<p class="nocomments">Este post é projegido por senha. Coloque a senha para ver o post.</p>
<?php return;
}
}
/* É a variavel para alterar no fundo */
$oddcomment = 'class="alt" ';
?>
<!-- Começe a Editar aqui. -->
<?php if ($comments) : ?>
<h3><?php comments_number('Sem Comentários', 'Um Comentário', '% Comentários' );?> em “<?php the_title(); ?>”</h3>
<ul class="commentlist">
<?php foreach ($comments as $comment) : ?>
<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
<?php echo get_avatar( $comment, 32 ); ?>
<?php comment_author_link() ?>
<?php if ($comment->comment_approved == '0') : echo "<em>Seu comentário esta aguardando moderação.</em>"; endif; ?>
<?php comment_date('F jS, Y') ?>
<?php comment_time() ?>
<?php edit_comment_link('edit',' ',''); ?>
<?php comment_text() ?>
</li>
<?php $oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : ''; ?>
<?php endforeach; ?>
</ul>
<?php else : // Isto é exibido se não houver nenhum comentario até agora ?>
<?php if ('open' == $post->comment_status) : ?>
<?php else : ?>
<p class="nocomments">Não estão permitidos comentários.</p>
<?php endif; ?>
<?php endif; ?>
<?php if ('open' == $post->comment_status) : ?>
<h3>Deixe uma resposta</h3>
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p>Você deve estar <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logado</a> para colocar um comentário.</p>
<?php else : ?>
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( $user_ID ) : ?>
<p>Logado como <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Sair »</a></p>
<?php else : ?>
<p class="clearfix"><label for="author">Nome <?php if ($req) echo "(required)"; ?></label> <input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" /></p>
<p class="clearfix"><label for="email">Email (não vai ser compartilhado<?php if ($req) echo ", required"; ?>)</label> <input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" /></p>
<p class="clearfix"><label for="url">Website</label> <input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /></p>
<?php endif; ?>
<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
<p class="clearfix"><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /></p>
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
<?php do_action('comment_form', $post->ID); ?>
</form>
<?php endif; endif; ?>
[]`s
Rafael Cirolini
http://www.geniusdeveloper.com.br/