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);
}/**
* 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
*/