get_all_post_type_supports

函数
get_all_post_type_supports ( $post_type )
参数
  • (string) $post_type The post type.
    Required:
返回值
  • (array) Post type supports list.
定义位置
相关方法
post_type_supportsget_post_types_by_supportadd_post_type_supportremove_post_type_supportget_post_type_object
引入
3.4.0
弃用
-

get_all_post_type_supports: 此函数返回所有已注册的文章类型及其支持的功能的数组,例如”标题”、”编辑器”和”作者”。

获取所有的文章类型特征

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

常见问题

FAQs
查看更多 >