WordPress Version: 5.4
/**
* Retrieves the array of post format slugs.
*
* @since 3.1.0
*
* @return string[] The array of post format slugs as both keys and values.
*/
function get_post_format_slugs()
{
$slugs = array_keys(get_post_format_strings());
return array_combine($slugs, $slugs);
}