close

media_upload_flash_bypass()

In this article

Displays the multi-file uploader message.

Source

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
}

Changelog

VersionDescription
2.6.0Introduced.

User Contributed Notes

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