media_upload_library()

最后更新于:2021-11-27 15:14:21

media_upload_library()

Retrieves the legacy media library form in an iframe.

响应

(string|null)

源文件

文件: gc-admin/includes/media.php

function media_upload_library() {
	$errors = array();

	if ( ! empty( $_POST ) ) {
		$return = media_upload_form_handler();

		if ( is_string( $return ) ) {
			return $return;
		}
		if ( is_array( $return ) ) {
			$errors = $return;
		}
	}

	return gc_iframe( 'media_upload_library_form', $errors );
}