-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathheader.php
More file actions
26 lines (20 loc) · 954 Bytes
/
Copy pathheader.php
File metadata and controls
26 lines (20 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<head>
<title><?=get_the_title()?></title>
<!-- meta tag header includes -->
<meta name="author" content="Taylor Callsen" />
<meta name="description" content="<?=get_the_excerpt()?>" />
<meta name="keywords" content="<?=$metaTags?>">
<link rel="canonical" href="<?=wp_get_canonical_url()?>">
<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/img/favicon.ico" />
<meta name="robots" content="index, follow">
<!-- compatability header includes -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- open graph header includes -->
<meta property="og:title" content="<?=get_the_title()?>" />
<meta property="og:url" content="<?=wp_get_canonical_url()?>" />
<meta property="og:description" content="<?=get_the_excerpt()?>" />
<!-- wordpress header includes -->
<?php wp_head(); ?>
</head>