get_post_format_slugs(): string[]

In this article

Retrieves the array of post format slugs.

Return

string[] The array of post format slugs as both keys and values.

Source

function get_post_format_slugs() {
	$slugs = array_keys( get_post_format_strings() );
	return array_combine( $slugs, $slugs );
}

Changelog

VersionDescription
3.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.