media_upload_html_bypass

The timeline below displays how wordpress function media_upload_html_bypass has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.1

/**
 * Displays the browser's built-in uploader message.
 *
 * @since 2.6.0
 */
function media_upload_html_bypass()
{
    ?>
	<p class="upload-html-bypass hide-if-no-js">
		<?php 
    _e('You are using the browser&#8217;s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. <a href="#">Switch to the multi-file uploader</a>.');
    ?>
	</p>
	<?php 
}

WordPress Version: 3.9

/**
 * Displays the browser's built-in uploader message.
 *
 * @since 2.6.0
 */
function media_upload_html_bypass()
{
    ?>
	<p class="upload-html-bypass hide-if-no-js">
	   <?php 
    _e('You are using the browser&#8217;s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. <a href="#">Switch to the multi-file uploader</a>.');
    ?>
	</p>
	<?php 
}

WordPress Version: 3.7

/**
 * Displays the browser's built-in uploader message.
 *
 * @since 2.6.0
 */
function media_upload_html_bypass()
{
    ?>
	<p class="upload-html-bypass hide-if-no-js">
       <?php 
    _e('You are using the browser&#8217;s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. <a href="#">Switch to the multi-file uploader</a>.');
    ?>
	</p>
	<?php 
}