How to access the names of the category name in Wordpress? How to access the names of the category name in Wordpress? wordpress wordpress

How to access the names of the category name in Wordpress?


You should use get_term_by. Example:

$term = get_term_by( 'slug', $value, $taxonomy );echo $term->name;


So you have the slug but want to get the name?

$_cat = get_category_by_slug('category-slug'); // Returns Category Object$_category_name = $_cat->name;

Source