Hola, para que no te aparezca, tendrias que borrar estas lineas de tu sidebar.php de tu tema:
Código PHP:
<?php if ( is_single()|| is_page() ) { ?>
<li><h1>Artículos Recientes</h1><ul><?php wp_get_archives('type=postbypost&limit=5')?></ul></li>
<?php } ?>
Para sacar de cuajo los comentarios los puedes desabilitar desde el panel de control
Tambien puedes sacar esta linea de tu single.php
Código PHP:
<?php comments_template(); ?>
Para que no aparezca la opcion de hacer comentarios, en el index.php de tu tema, borra esta linea:
Código PHP:
<span class="bubble"><?php comments_popup_link('Leave a Comment','One Comment', '% Comments', '','Comments off'); ?></span>
Para seguir descuartizando tu tema, tambien puedes sacar estas lineas en el single.php:
Código PHP:
<div id="postmetadata">
You can follow any responses to this entry through the <?php post_comments_feed_link('RSS 2.0'); ?> feed.
<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) { // Both Comments and Pings are open ?>
You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(); ?>" rel="trackback">trackback</a> from your own site.
<?php }elseif(!('open' == $post-> comment_status) && ('open' == $post->ping_status)) { // Only Pings are Open ?>
Responses are currently closed, but you can <a href="<?php trackback_url(); ?> " rel="trackback">trackback</a> from your own site.
<?php }elseif(('open' == $post-> comment_status) && !('open' == $post->ping_status)){ // Comments are open, Pings are not ?>
You can skip to the end and leave a response. Pinging is currently not allowed.
<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) { // Neither Comments, nor Pings are open ?>
Both comments and pings are currently closed.
<?php } edit_post_link('Edit this entry.','',''); ?>
</div>
Te das cuenta de que trata cada linea que te marco?
Antes de cambiar algun archivo haz una copia de backup y prueba de a uno para ver los resultados
saludos!