Return to Snippet

Revision: 45910
at May 11, 2011 00:26 by athanassiadis


Initial Code
function get_category_id($cat_name){
	$term = get_term_by('name', $cat_name, 'category');
	return $term->term_id;
}

Initial URL


Initial Description
How to get a category id from the name of the category

Initial Title
Get category id by name

Initial Tags
wordpress, category, function

Initial Language
PHP