header: add wordpress header functions
This commit is contained in:
parent
45258a0cd6
commit
c1402f4869
1 changed files with 7 additions and 3 deletions
10
header.php
10
header.php
|
@ -1,8 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<html <?php language_attributes(); ?>>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Blue Sky, by Kazhnuz</title>
|
||||
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title><?php bloginfo('name'); ?><?php wp_title(' - '); ?></title>
|
||||
<meta name="description" content="<?php bloginfo('name'); echo " - "; bloginfo('description');?>" />
|
||||
|
||||
<?php wp_head(); ?>
|
||||
|
||||
<!-- mon icon -->
|
||||
<link rel="shortcut icon" href="img/favicon.png">
|
||||
|
|
Reference in a new issue