Display WP Post Category without link

Here is a small piece of code that will display the category name of a Wordpress post without a hyperlink to the category page. Typically, the category data is retrieved with the_category( ). This function is not useful for manipulating the category name in plain text. Displaying the category in plain text is easy with get_the_category( ), however.


<?php
$category = get_the_category();
echo $category[0]->cat_name;
?>

5 Comments so far

  1. [...] to Corey Salzano for that trick! Did this tip help you? If so, feel free to make a small [...]

  2. [...] – Tactical Tehnique Curiosidades de [...]

  3. [...] original de Corey Salzano Partilha esta [...]

  4. dip on June 7th, 2009

    thank you for that little snippet :)

  5. [...] 13. Display WP Post Category without link [...]

Leave a reply

 

Thanks for reading!

You like? Subscribe to my rss feed
or

Sign up for email updates:

Some Recent Updates