get_all_post_type_supports( string $post_type )

Get all the post type features


Parameters

$post_type

(string) (Required) The post type.


Return

(array) Post type supports list.


Source

File: wp-includes/post.php

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();
}


Changelog

Changelog
Version Description
WP-3.4.0 Introduced.