categories - Display category name on featured image in wordpress excerpt

admin2025-06-02  1

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

Share Improve this question edited Apr 14, 2017 at 10:57 Sisir 7,8718 gold badges61 silver badges99 bronze badges asked Apr 14, 2017 at 9:49 Tarrmie de ManTarrmie de Man 431 silver badge7 bronze badges 1
  • You can use the_category( ' ' ); inside your loop to show category of post. For more detail read this article – Rishabh Commented Apr 14, 2017 at 9:58
Add a comment  | 

1 Answer 1

Reset to default 1

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

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748831632a314088.html

最新回复(0)