wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_post_format_slugs › WordPress Function

Seit3.1.0
Veraltetn/v
get_post_format_slugs ( Keine Parameter )
Gibt zurück:
  • (string[]) The array of post format slugs as both keys and values.
Definiert in:
Codex:

Retrieves the array of post format slugs.



Quellcode

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