Warning: This function has been deprecated. Use wp_get_post_categories() instead.
wp_get_post_cats() WordPress Function
The wp_get_post_cats() function is used to get the categories for a post.
wp_get_post_cats( int $blogid = '1', int $post_ID ) #
Retrieves a list of post categories.
Description
See also
Parameters
- $blogid
(int)(Optional)Not Used
Default value: '1'
- $post_ID
(int)(Required)
Return
(array)
Source
File: wp-includes/deprecated.php
function wp_get_post_cats($blogid = '1', $post_ID = 0) { _deprecated_function( __FUNCTION__, '2.1.0', 'wp_get_post_categories()' ); return wp_get_post_categories($post_ID); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.1.0 | Use wp_get_post_categories() |
1.0.1 | Introduced. |