get_available_post_mime_types

函数
get_available_post_mime_types ( $type = 'attachment' )
参数
  • (string) $type
    Required:
    Default: 'attachment'
返回值
  • (string[]) An array of MIME types.
定义位置
相关方法
get_available_post_statusesget_post_mime_typesget_post_mime_typeget_allowed_mime_typesget_all_post_type_supports
引入
2.5.0
弃用
-

get_available_post_mime_types: 该函数以一个关联数组的形式返回可用的post MIME类型。数组的键是MIME类型,值是相应的人类可读字符串: 该函数不接受任何参数。

为一个给定的文章类型获取所有可用的文章MIME类型。

function get_available_post_mime_types( $type = 'attachment' ) {
	global $wpdb;

	$types = $wpdb->get_col( $wpdb->prepare( "SELECT DISTINCT post_mime_type FROM $wpdb->posts WHERE post_type = %s", $type ) );
	return $types;
}

常见问题

FAQs
查看更多 >