Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/09/2010, 13:25
American2010
 
Fecha de Ingreso: abril-2003
Mensajes: 1.129
Antigüedad: 21 años, 7 meses
Puntos: 34
Respuesta: Variables en Wordpress

No me voy a sumar un poroto, sino que te digo de donde lo saqué.

http://www.sydneyfx.com.au/wordpress...-wordpress/167

La solución que dan es usar esto:

Código PHP:
Ver original
  1. <?php
  2. foreach((get_the_category()) as $category) {
  3. echo $category->cat_name . ' ';
  4. }
  5. ?>

Incluso esta bueno, porque detallan toda la información que podrías obtener de get_the_category() como ser:

1. cat_ID – category id
2. cat_name – category name
3. category_nicename -post slug
4. category_description – category description
5. category_parent – the current categories parent category id
6. category_count – the number of uses of this category

Mas info en http://codex.wordpress.org/Template_...t_the_category
__________________
elGastronomo