I've been using wordpress 2.8.5. what I'm trying to do is getting the category name of all the category created from wodpress admin and using it in my page some where....Please help....!!!
I've been using wordpress 2.8.5. what I'm trying to do is getting the category name of all the category created from wodpress admin and using it in my page some where....Please help....!!!
Thanks..Meanwhile I also found something that worked for me..
<?php
$my_cat = get_categories();
foreach((array)$my_cat as $cat)
{
echo $cat->cat_name;
}
?>
Cheers...!!
This topic has been closed to new replies.