Tips and Tricks
WordPress Get Category Name by ID : Inside or Outside loop
WordPress Get Category Name by ID: It is very simple and easy to get category name by category ID, inside or outside loop in WordPress. You can do it by using just 1 line of code. Read on to find out more.
WordPress Get Category Name by ID – Inside or Outside loop
$cat_name = get_cat_name($cat_id); echo $cat_name;
You can use the above code Inside or Outside loop of WordPress to get the Category name, just by using Category ID.
If you wish to, you can also encapsulate the above lines of code in a function and simply return the value from the function instead of just echoing it.
That’s it!
Do you know of any other ways to get category name by id in wordpress? Feel free to suggest by commenting below.