Este plugin no se ha probado con las últimas 3 versiones mayores de WordPress. Puede que ya no tenga soporte ni lo mantenga nadie, o puede que tenga problemas de compatibilidad cuando se usa con las versiones más recientes de WordPress.

Simple Hit Counter

Descripción

This is the simplest hit counter I could imagine (well, almost). Every time a
page is requested, it adds one to the count. The display is not an image, just
text. There is no javascript to hit some third-party server, no tracking, no
distinction among pages: just an old-fashioned site counter CGI, implemented in
WordPress. The plugin stores its count in its own MySQL table.

Once the plugin is installed (described below), you can display the count by
putting code like this somewhere on your page:

<?= simplehitcounter_hit(); ?>

That will both increment the counter and display its value. There is no method
for getting the value without incrementing it. I suppose I could write such a
thing if anyone likes.

There is a minor race condition. First the plugin updates the database by one
(atomically), then it queries for the current count. Therefore in heavy traffic
it is possible for two updates to happen before either select. In that case,
the counter will correctly increment, but the number displayed may be the same
for each user, representing the total page hits. As far as I can tell, this
race condition is inevitable without locking the table. It seems trivial
enough, though I guess you should be warned if you run a contest to give away a
free car to the 1,000,000th user.

By default the plugin keeps its data in a table called wp_simplehitcounter_hits.
You can change this by editing the simplehitcounter.php file.

Instalación

Installing the plugin is easy and follows the standard steps:

  1. Upload simplehitcounter.php to the /wp-content/plugins/ directory.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.
  3. Place <?= simplehitcounter_hit(); ?> somewhere like the footer or sidebar.

Preguntas frecuentes

Why did you write such a boring plugin?

Why do you ask such boring questions?

Why didn’t you use the other plugin x?

I looked around, but everything seemed too fancy. Besides, I wanted a chance to
write my own WordPress plugin.

Reseñas

No hay reseñas para este plugin.

Colaboradores y desarrolladores

Este software es de código abierto. Las siguientes personas han contribuido a este plugin.

Colaboradores

Traduce "Simple Hit Counter" a tu idioma.

¿Interesado en el desarrollo?

Revisa el código, echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.