W3cubDocs

/WordPress

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

Version Description
3.4.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_all_post_type_supports