post_type_supports() WP 1.0
Check a post type's support for a given feature.
1 time = 0.000018s = very fast | 50000 times = 0.04s = speed of light
No Hooks.
Return
true/false. Whether the post type supports the given feature.
Usage
post_type_supports( $post_type, $feature );
- $post_type(string) (required)
- The post type being checked.
- $feature(string) (required)
- The feature being checked.
Notes
- Global. Array. $_wp_post_type_features
Changelog
Since 3.0.0 | Introduced. |
Code of post_type_supports() post type supports WP 5.6
function post_type_supports( $post_type, $feature ) {
global $_wp_post_type_features;
return ( isset( $_wp_post_type_features[ $post_type ][ $feature ] ) );
}