Hola Nekko, en mi caso no es single.php sino index.php
Código PHP:
<div class="comments">
<h4>Comentarios</h4>
<?php comments_template(); // Get wp-comments.php template ?>
</div>
También lo probé aquí y me aparecen para llenar 2 veces el comentario
Código PHP:
<?php
if( ! in_category('Nosotros') ) {
comments_template( '', true );
}
?>
<?php comments_template(); // Get wp-comments.php template ?>
también lo probé así y allí muestra error
Código PHP:
<?php
if( ! in_category('Nosotros') ) {
comments_template( '', true );
}
<?php comments_template(); // Get wp-comments.php template ?>
?>