media_upload_header()WP 2.5.0

Outputs the legacy media upload header.

No Hooks.

Return

null. Nothing (null).

Usage

media_upload_header();

Changelog

Since 2.5.0 Introduced.

media_upload_header() code WP 6.5.2

function media_upload_header() {
	$post_id = isset( $_REQUEST['post_id'] ) ? (int) $_REQUEST['post_id'] : 0;

	echo '<script type="text/javascript">post_id = ' . $post_id . ';</script>';

	if ( empty( $_GET['chromeless'] ) ) {
		echo '<div id="media-upload-header">';
		the_media_upload_tabs();
		echo '</div>';
	}
}