get Current Category in WordPress

Juli 28th, 2010 § 0

For all Developer who are searching for a function that return you a current category in wordpress! here you can find a result

if(is_category()) {
$cat = get_query_var(‘cat’);
$currentCat = get_category($cat);
$currentCat->term_id;
}

if(is_category()) { $cat = get_query_var(‘cat’); $currentCat = get_category($cat); $currentCat->term_id; }

§ Leave a Reply

You must be logged in to post a comment.

What's this?

You are currently reading get Current Category in WordPress at Blog @ Kronsi.com.

meta