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;
?>
Comments(5)
[...] to Corey Salzano for that trick! Did this tip help you? If so, feel free to make a small [...]
[...] – Tactical Tehnique Curiosidades de [...]
[...] original de Corey Salzano Partilha esta [...]
thank you for that little snippet :)
[...] 13. Display WP Post Category without link [...]