WordPress Version: 6.1
/**
* Gets comma-separated list of tags available to edit.
*
* @since 2.3.0
*
* @param int $post_id
* @param string $taxonomy Optional. The taxonomy for which to retrieve terms. Default 'post_tag'.
* @return string|false|WP_Error
*/
function get_tags_to_edit($post_id, $taxonomy = 'post_tag')
{
return get_terms_to_edit($post_id, $taxonomy);
}