Helo.
I would like all my featured images on homepage, post page, search and archives pages to have the name of the post category printed on it. so people will easily know if the post is entertainment, tech or education without reading it already.
Please help
Helo.
I would like all my featured images on homepage, post page, search and archives pages to have the name of the post category printed on it. so people will easily know if the post is entertainment, tech or education without reading it already.
Please help
use get_the_category()
<?php
foreach((get_the_category()) as $category) {
echo $category->cat_name . ' ';
}
?>
Note: It will return a list of categories if there are more than one category
the_category( ' ' );
inside your loop to show category of post. For more detail read this article – Rishabh Commented Apr 14, 2017 at 9:58