WordPress Version: 3.9
/**
* Display setup wp-config.php file header.
*
* @ignore
* @since 2.3.0
*/
function setup_config_display_header()
{
global $wp_version;
header('Content-Type: text/html; charset=utf-8');
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"<?php
if (is_rtl()) {
echo ' dir="rtl"';
}
?>>
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php
_e('WordPress › Setup Configuration File');
?></title>
<link rel="stylesheet" href="css/install.css?ver=<?php
echo preg_replace('/[^0-9a-z\.-]/i', '', $wp_version);
?>" type="text/css" />
<link rel="stylesheet" href="../wp-includes/css/buttons.css?ver=<?php
echo preg_replace('/[^0-9a-z\.-]/i', '', $wp_version);
?>" type="text/css" />
</head>
<body class="wp-core-ui<?php
if (is_rtl()) {
echo ' rtl';
}
?>">
<h1 id="logo"><a href="<?php
esc_attr_e('https://wordpress.org/');
?>"><?php
_e('WordPress');
?></a></h1>
<?php
}