WordPress Version: 2.2
/**
* Display installation header.
*
* @since 2.5.0
*
* @param string $body_classes
*/
function display_header($body_classes = '')
{
header('Content-Type: text/html; charset=utf-8');
if (is_rtl()) {
$body_classes .= 'rtl';
}
if ($body_classes) {
$body_classes = ' ' . $body_classes;
}
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" <?php
language_attributes();
?>>
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex,nofollow" />
<title><?php
_e('WordPress › Installation');
?></title>
<?php
wp_admin_css('install', true);
wp_admin_css('dashicons', true);
?>
</head>
<body class="wp-core-ui<?php
echo $body_classes;
?>">
<p id="logo"><a href="<?php
echo esc_url(__('https://wordpress.org/'));
?>"><?php
_e('WordPress');
?></a></p>
<?php
}