get_all_post_type_supports()WP 3.4.0

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() WP 6.5.2

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