Documentación

[View English documentation]

Plugin para WordPress para enumerar los comentarios en cada entrada y favorecer la organización en las discusiones. Además pueden mostrarse la cantidad de comentarios realizados en el post o en el blog.

Descarga

Numbered Comments – Versión 1.0
numbered-comments.zip – 1kb
Versión texto (.txt)

Instalación

Subir el archivo numbered-comments.php a la carpeta wp-contents/plugins y activar el plugin desde el panel de administración de WordPress.

Uso del plugin

Hay 3 funciones a las que se puede llamar. La primera es para enumerar los comentarios dentro de un post. Al primero le añadirá el numero 1, al segundo el 2 y así sucesivamente. Para esto en comments.php buscamos:

<?php foreach ($comments as $comment) : ?>

Y a continuación agregamos:
<?php nc_comment ?>

Si lo que buscamos es mostrar la cantidad de comentarios realizados en la entrada debemos insertar dentro del bucle (loop) lo siguiente:
<?php nc_post ?>

Por último para mostrar la cantidad de comentarios realizados en el blog colocamos en cualquier parte (sidebar, header, footer, etc.) lo siguiente:
<?php nc_blog ?>

Contacto

Por cualquier duda, error o mensaje de cualquier tipo, puedes comunicarte conmigo en la sección de contacto.


Documentation

WordPress plugin to enumerate the comments in each post. Also you can show the number of comments in the post and the total comments of the blog.

Download

Numbered Comments – v1.0
numbered-comments.zip – 1kb
Plain text (.txt)

Instalation

Upload numered-comments.php to wp-content/plugins and activate the plugin in the WP Administration Panel.

Usage

To show the number of each comment insert:
<?php nc_comment ?> after <?php foreach ($comments as $comment) : ?>

To show the number of comments in a post insert:
<?php nc_post ?> into the loop.

To show the total number of comments of the blog insert:
<?php nc_blog ?> in any place of the blog.

Contact

Contact me.