Search code examples
phpwordpresscategoriesslug

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


I'm trying to get the category name via the_slug() but I can't get it displayed via several methods. Does anyone know what's the right term?


Solution

  • 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