How to dynamically display the category name of my post within text in wordpress

1

What PHP function can I use to display the name of the category dynamically in wordpress in the text of my post?

    
asked by anonymous 06.10.2017 / 20:03

1 answer

1

the_category () usually works for me. It returns the list of categories linked to the post already with the links.

link

    
12.10.2017 / 17:37