media_upload_library()

Retrieves the legacy media library form in an iframe.


Description Description


Return Return

(string|null)


Top ↑

Source Source

File: wp-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 wp_iframe( 'media_upload_library_form', $errors );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.5.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.