get_category_by_slug() WordPress Function
The get_category_by_slug() function is used to retrieve a category object by its slug. This function is useful for retrieving a category object when you know the slug of the category, but not the ID. This function can be used in conjunction with the get_term_by() function.
get_category_by_slug( string $slug ) #
Retrieves a category object by category slug.
Parameters
- $slug
(string)(Required)The category slug.
Return
(object|false) Category data object on success, false if not found.
More Information
Same is achieved by:get_term_by('slug', $slug, 'category');
Source
File: wp-includes/category.php
function get_category_by_slug( $slug ) { $category = get_term_by( 'slug', $slug, 'category' ); if ( $category ) { _make_cat_compat( $category ); } return $category; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |