get_the_category() not in the loop
-
According to the documentation:
http://codex.wordpress.org/Template_Tags/get_the_category
This will not work outside the loop:
foreach((get_the_category()) as $cat)
{ echo "<br>".$cat->cat_name.'--cat_ID='.$cat->cat_ID; }Is there any way I can get similar functionality outside the loop?
Thanks in advance.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘get_the_category() not in the loop’ is closed to new replies.