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



get_all_post_type_supports › WordPress Function

Seit3.4.0
Veraltetn/v
get_all_post_type_supports ( $post_type )
Parameter:
  • (string) $post_type The post type.
    Erforderlich: Ja
Gibt zurück:
  • (array) Post type supports list.
Definiert in:
Codex:

Gets all the post type features



Quellcode

function get_all_post_type_supports( $post_type ) {
	global $_wp_post_type_features;

	if ( isset( $_wp_post_type_features[ $post_type ] ) ) {
		return $_wp_post_type_features[ $post_type ];
	}

	return array();
}