display_header() – Display installation header.

You appear to be a bot. Output may be restricted

Description

Display installation header.

Usage

display_header( $body_classes );

Parameters

$body_classes
( string ) optional

Returns

void

Source

File name: wordpress/wp-admin/install.php
Lines:

1 to 23 of 23
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 <?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 &rsaquo; Installation' ); ?></title>
	<?php wp_admin_css( 'install', true ); ?>
</head>
<body class="wp-core-ui<?php echo $body_classes; ?>">
<p id="logo"><?php _e( 'WordPress' ); ?></p>

	<?php
} // End display_header().
 

 View on GitHub View on Trac