ok i use this to get the category id from the category
get_query_var('cat');
but i need it get it to show when in post too
ok i use this to get the category id from the category
get_query_var('cat');
but i need it get it to show when in post too
for a post, you could use wp_get_post_categories()
http://codex.wordpress.org/Function_Reference/wp_get_post_categories
be aware that the function returns an array (of category ids) even if you only have one category in your post.
This topic has been closed to new replies.