get_all_post_type_supports()
Gets all the post type features
Хуков нет.
Возвращает
Массив. Post type supports list.
Использование
get_all_post_type_supports( $post_type );
- $post_type(строка) (обязательный)
- The post type.
Заметки
- Global. Массив. $_wp_post_type_features
Список изменений
| С версии 3.4.0 | Введена. |
Код get_all_post_type_supports() get all post type supports WP 6.9
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();
}