Display only one category on home page wordpress

Use the below code

<?php
$category = get_the_category(); 
echo $category[0]->cat_name;
?>

Leave a Comment