WordPress Version: 6.2
/**
* Sets the categories that the post ID belongs to.
*
* @since 1.0.1
* @deprecated 2.1.0
* @deprecated Use wp_set_post_categories()
* @see wp_set_post_categories()
*
* @param int $blogid Not used
* @param int $post_id
* @param array $post_categories
* @return bool|mixed
*/
function wp_set_post_cats($blogid = '1', $post_id = 0, $post_categories = array())
{
_deprecated_function(__FUNCTION__, '2.1.0', 'wp_set_post_categories()');
return wp_set_post_categories($post_id, $post_categories);
}