How can I echo the category slug while i'm on a single post?
isn't there any <?php the_category_slug(); ?>
How can I echo the category slug while i'm on a single post?
isn't there any <?php the_category_slug(); ?>
<?php
$category = get_the_category();
echo $category[0]->slug;
?>
thank you very much!
This topic has been closed to new replies.