$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>categories - Display category name on featured image in wordpress excerpt|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

categories - Display category name on featured image in wordpress excerpt

matteradmin7PV0评论

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

Post a comment

comment list (0)

  1. No comments so far