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.

WordPress Wordle

Descripción

Have you ever wanted to create a Wordle from the tags in your blog? If so this plugin is for you. Through the use of a shortcode or template tag you are able to print out a string of text which can be copied and pasted into the Wordle create form. You can customise the results to include or exclude whichever terms you want.

The plugin is very simple and has no admin screens.

If you have any issues with the plugin please contact me.

Capturas

  • Editing a page with a shortcode.
  • The output of the page showing the tags to be copied and pasted.

Instalación

  1. Upload /wordpress-wordle to the /wp-content/plugins/ directory

  2. Activate the plugin through the ‘Plugins’ menu in WordPress

  3. There is no admin screen to configure. That’s it.

Usage

Use the [wordle_tags] shortcode on any page/post or the wordle_tags() function in templates. Both of these take 3 optional parameters:

  • $include Comma separated list of Term IDs to be included.
  • $exclude Comma separated list of Term IDs to be excluded. Include id overrides this.
  • $number The number of tags to be returned.

Examples

simple use:
[wordle_tags]

include term ids 1,2:
[wordle_tags include=»1,2″]

exclude term ids 3,4:
[wordle_tags exclude=»3,4″]

limit to top 100 tags:
[wordle_tags number=»100″]
[wordle_tags include=»1,2″ number=»100″]
[wordle_tags exclude=»3,4″ number=»100″]

FAQ

What is a Wordle?

A Wordle is a «beautiful word cloud». You can put them on tshirts or posters they look so good. Check out the Wordle site for more info.

This just makes text. What use is it?

The plugin only outputs text which can then be used to create the Wordle. It doesn’t actually produce the image. The output will therefore not be particularly helpful for ordinary viewers of your site. It is recommended that you make a private page and use the shortcode on it.

How do I make the Wordle?

Go to http://www.wordle.net/create and paste in the text. You can then customise the output.

How do I discover the term ID for my tags?

Each tag has a unique term ID. You can discover the ID for a term by following these steps:

  1. Log in as admin and go to admin dashboard.

  2. Click on «Tags» in the «Posts» section on the left hand side of the dashboard. You will see a list of tags.

  3. Mouseover the tag you are interested in and take a look in the info bar at the bottom of the screen. You should see the tag_ID as a param for the tag link. This is the Term ID.

Where can I see it in action?

This output page produced this Topic Maps Wordle.

Reseñas

No hay reseñas para este plugin.

Colaboradores y desarrolladores

«WordPress Wordle» es un software de código abierto. Las siguientes personas han colaborado con este plugin.

Colaboradores

Traduce «WordPress Wordle» 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.

Registro de cambios

0.1

  • Initial Release
  • Supports [wordle_tags] and wordle_tags().