-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
60 lines (53 loc) · 2.42 KB
/
header.php
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<html>
<head>
<title><?php bloginfo('name'); ?> - <?php bloginfo('description'); ?></title>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
<meta http-equiv="content-type" content="<?php bloginfo('html_type'); ?>; <?php bloginfo('charset'); ?>" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" media="all" type="text/css" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="shortcut icon" href="/aog/wp-content/themes/aog-theme/favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="robots" content="index, follow"/>
<meta name="googlebot" content="index, follow"/>
<meta name="viewport" content="width=device-width, user-scalable=no"/>
<!-- Dados estruturados -->
<meta itemprop="name" content="André Guadalupe - especialista em educação de alto desempenho"/>
<meta itemprop="description" content="André Oliveira Guadalupe - especialista em educação de alto desempenho"/>
<meta itemprop="url" content="http://www.aogedu.com.br"/>
<meta itemprop="email" content="andre@aogedu.com.br"/>
<?php wp_head(); ?>
</head>
<body>
<?php var_dump(get_theme_mod('aog_facebook'));?>
<header class="taskbar">
<div class="aog-max-size-container">
<figure class="logo-header">
<a href="<?php echo get_option('home'); ?>">
<?php the_custom_logo() ?>
<!-- <img src="/aog/wp-content/themes/aog-theme/img/logo-120px.png"> -->
</a>
</figure>
<nav class="menu-header-wrapper">
<ul class="menu-header-categories">
<?php wp_nav_menu( array(
'theme_location' => 'top',
'menu_id' => 'top-menu',) );
?>
</ul>
<ul class="social-nav">
<li>
<a href="<?php get_option('aog_facebook') ?>" class="fa fa-facebook"></a>
</li>
<li>
<a href="https://www.youtube.com/user/andre97web" class="fa fa-youtube"></a>
</li>
<li>
<a href="https://www.linkedin.com/in/andreguadalupe/" class="fa fa-linkedin"></a>
</li>
</ul>
</nav>
</div>
</header>