Answers for "category title in post"

PHP
0

category title in post

<?php
foreach((get_the_category()) as $category) { 
    echo $category->cat_name . ' '; 
} 
?>
Posted by: Guest on March-11-2020

Browse Popular Code Answers by Language