¿Estás buscando una manera de mostrar el recuento de comentarios de las entradas? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que puede utilizar para mostrar el recuento de comentarios en las entradas de WordPress.
El uso típico es dentro de ‘The Loop’ con esta llamada:
Puedes cambiar la etiqueta h6 y la forma de pasar el ID del post.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
function getPostComments($postID){ $query_post = get_post($postID); $num = $query_post->comment_count; if( $num == 0 || $num > 1 ) : $num = $num.' Commenti'; // change the plural for your language else : $num = $num.' Commento'; // change the singular for your language endif; $permalink = get_permalink($postID); return '<a href="'. $permalink . '#comments" class="comments_link">' . $num . '</a>'; }
Nota: Si es la primera vez que añades fragmentos de código en WordPress, consulta nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente tu sitio.
Si te ha gustado este fragmento de código, por favor, considere la posibilidad de revisar nuestros otros artículos en el sitio como: 7 mejores plugins de calendario para WordPress y cómo utilizar Google Optimize en WordPress.
I need to change my default comment count from 0 to 1, how do i do this? please!
You could change line 3 to:
$num = $query_post->comment_count === 0 ? 1 : $query_post->comment_count;
This would change a 0 comment count to 1, but for 1 or higher, it would keep it the same.
This is my first time trying to use WordPress codes on my page. I understand how it works, but how can I bring it life? I think I should use “getPostComments()” on the page where I want it, but what should I write in the bracket? Thanks for the help!
Yes, this will usually need to be called inside The Loop: https://www.isitwp.com/the-ultimate-guide-to-the-wordpress-loop/