-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
20 lines (20 loc) · 939 Bytes
/
header.php
File metadata and controls
20 lines (20 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html <?php language_attributes();?>>
<head>
<meta charset="<?= get_bloginfo('charset');?>">
<title><?= get_bloginfo('title');?></title>
<meta name="viewport" content="width=device-width, initial-scale=0.9,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="<?= get_bloginfo('description');?>">
<meta name="robots" content="all">
<meta name="author" content="<?= get_bloginfo('name');?>">
<!--Balises OG-->
<meta property="og:title" content="<?= get_bloginfo('title');?>">
<meta property="og:type" content="website">
<meta property="og:url" content="<?= get_bloginfo('url');?>">
<meta property="og:image" content="<?= get_template_directory_uri();?>/favicon.png">
<!---->
<link rel="shortcut icon" type="image/x-icon" href="<?= get_template_directory_uri();?>/favicon.png">
<?php wp_head();?>
</head>
<body <?php body_class('aladin'); ?>>