get_all_post_type_supports() WordPress Function
The get_all_post_type_supports() function is a built-in function in WordPress that allows you to get an array of all the features that are supported by a given post type.
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();
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |