Problema con contador de comentarios en titulo post
-
Hola,
Me surge un problema con el contador de comentarios que a parece al lado de cada post del blog.Os pego aquí un link temporal del blog, puesto que lo estoy actualizando.
http://hechopar-cp519.wordpresstemporal.com/wp/reposteria/
Si os fijáis siempre aparecen 0 comentarios, pero si os vais abajo de cada post, realmente sí que hay comentarios.
La verdad es que no sé dónde está el error en la plantilla.Mi plantilla es Superb Lite.
y en la parte de comentarios.php de la plantilla me viene esto. No sé si hay algo que esté mal:
<section id=»comments» class=»comments-area»><?php // You can start editing here — including this comment! ?>
<?php if ( have_comments() ) : ?>
<h2 class=»comments-title»><?php
printf( _n( ‘Una respuesta en “%2$s”’, ‘%1$s respuestas en “%2$s”’, get_comments_number(), ‘superb’ ),
number_format_i18n( get_comments_number() ), ‘<span>’ . get_the_title() . ‘</span>’ );
?>
</h2><ol class=»commentlist»>
<?php wp_list_comments( array( ‘callback’ => ‘superb_comment’, ‘style’ => ‘ol’ ) ); ?>
<!– /.commentlist –><?php if ( get_comment_pages_count() > 1 && get_option( ‘page_comments’ ) ) : // are there comments to navigate through ?>
<nav id=»comment-nav-below» class=»navigation» role=»navigation»>
<h1 class=»assistive-text section-heading»><?php esc_html_e( ‘Comment navigation’, ‘superb’ ); ?></h1>
<div class=»nav-previous»><?php previous_comments_link( esc_html__( ‘← Older Comments’, ‘superb’ ) ); ?></div>
<div class=»nav-next»><?php next_comments_link( esc_html__( ‘Newer Comments →’, ‘superb’ ) ); ?></div>
</nav>
<?php endif; // check for comment navigation ?><?php // If comments are closed and there are comments, let’s leave a little note.
elseif ( ! comments_open() && ‘0’ != get_comments_number() && post_type_supports( get_post_type(), ‘comments’ ) ) : ?>
<p class=»nocomments»><?php esc_html_e( ‘Comments are closed.’, ‘superb’ ); ?></p>
<?php endif; ?><?php comment_form(); ?>
</section> <!– /#comments.comments-area –>
Muchas gracias por vuestra ayuda.
Un saludo
- El debate ‘Problema con contador de comentarios en titulo post’ está cerrado a nuevas respuestas.