wp_login_viewport_meta

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

WordPress Version: 5.6

/**
 * Outputs the viewport meta tag for the login page.
 *
 * @since 3.7.0
 */
function wp_login_viewport_meta()
{
    ?>
	<meta name="viewport" content="width=device-width" />
	<?php 
}

WordPress Version: 5.1

/**
 * Outputs the viewport meta tag.
 *
 * @since 3.7.0
 */
function wp_login_viewport_meta()
{
    ?>
	<meta name="viewport" content="width=device-width" />
	<?php 
}

WordPress Version: 4.3

/**
 * @since 3.7.0
 */
function wp_login_viewport_meta()
{
    ?>
	<meta name="viewport" content="width=device-width" />
	<?php 
}

WordPress Version: 3.7

function wp_login_viewport_meta()
{
    ?>
	<meta name="viewport" content="width=device-width" />
	<?php 
}