Answers for "get the category name"

PHP
0

get category name by id wordpress

get_cat_name( $cat_id );
Posted by: Guest on November-22-2021
0

category title in post

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

Code answers related to "get the category name"

Browse Popular Code Answers by Language