media_upload_flash_bypass()WP 2.6.0

Displays the multi-file uploader message.

No Hooks.

Returns

null. Nothing (null).

Usage

media_upload_flash_bypass();

Changelog

Since 2.6.0 Introduced.

media_upload_flash_bypass() code WP 6.9.1

<?php
function media_upload_flash_bypass() {
	?>
	<p class="upload-flash-bypass">
	<?php
		printf(
			/* translators: %s: HTML attributes for button. */
			__( 'You are using the multi-file uploader. Problems? Try the <button %s>browser uploader</button> instead.' ),
			'type="button" class="button-link"'
		);
	?>
	</p>
	<?php
}