-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
executable file
·40 lines (40 loc) · 1.32 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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="renderer" content="webkit">
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="email=no">
<meta name="format-detection" content="address=no">
<meta name="format-detection" content="date=no">
<?php include('inc/seo.php') ?>
<?php wp_head(); ?>
<?php echo get_theme_mod('ds_header'); ?>
</head>
<body <?php body_class(); ?> >
<?php if (is_home()) { } else { ?>
<div class="container g-4">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="logo_box">
<h1 class="logo">
<a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>">
<img src="<?php echo get_theme_mod('ds_logo') ?>" alt="">
</a>
</h1>
<?php wp_nav_menu(
array(
'theme_location' => 'main',
'container' => 'nav',
'container_class' => 'primary',
'menu_class' => 'menu-ul no-home-menu',
'menu_id' => 'menu-ul',
'depth' => 1,
)
);
?>
</div>
<?php } ?>