-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathheader.php
118 lines (108 loc) · 3.57 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
/**
* The header for our theme.
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Akina
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Access-Control-Allow-Origin" content="*" >
<title itemprop="name">
<?php global $page, $paged;wp_title( '-', true, 'right' );
bloginfo( 'name' );
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) ) echo " - $site_description";if ( $paged >= 2 || $page >= 2 ) echo ' - ' . sprintf( __( '第 %s 页'), max( $paged, $page ) );?>
</title>
<!--网站标题自动判断 设置/*-->
<?php if(akina_option('web_title') !='0') {
$onblur_text= akina_option('onblur');
$onfocus_text = akina_option('onfocus');
?>
<script>
var title = document.title;
// window 失去焦点
window.onblur = function () {
document.title = '<?php echo $onblur_text ;?>';
};
// window 获得焦点
window.onfocus = function () {
document.title = '<?php echo $onfocus_text ;?>';
setTimeout( "document.title=title", 3000 );
}
</script>
<?php }?>
<?php if ( akina_option( 'progress_type' ) == 'loadprogress' ) { ?>
<script src="<?php bloginfo('template_url'); ?>/js/nprogress.js"></script>
<?php }?>
<?php if ( akina_option( 'akina_meta' ) == true ) {
$keywords = '';
$description = '';
if ( is_singular() ) {
$keywords = '';
$tags = get_the_tags();
$categories = get_the_category();
if ( $tags ) {
foreach ( $tags as $tag ) {
$keywords .= $tag->name . ',';
};
};
if ( $categories ) {
foreach ( $categories as $category ) {
$keywords .= $category->name . ',';
};
};
$description = mb_strimwidth( str_replace( "\r\n", '', strip_tags( $post->post_content ) ), 0, 240, '…' );
} else {
$keywords = akina_option( 'akina_meta_keywords' );
$description = akina_option( 'akina_meta_description' );
};
?>
<meta name="description" content="<?php echo $description; ?>"/>
<meta name="keywords" content="<?php echo $keywords; ?>"/>
<?php } ?>
<link rel="shortcut icon" href="<?php bloginfo('template_url'); ?>/images/favicon.ico"/>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<section id="main-container"> <!--/*启至footer*/-->
<?php
if(!akina_option('head_focus')){
$filter = akina_option('focus_img_filter');
?>
<div class="headertop <?php echo $filter; ?>">
<?php get_template_part('layouts/imgbox'); ?>
</div>
<?php } ?>
<div id="page" class="site wrapper">
<header class="site-header" role="banner">
<div class="site-top">
<?php header_user_menu(); if(akina_option('top_search') == 'yes') { ?>
<div class="searchbox"><i class="iconfont js-toggle-search icon-search"></i>
</div>
<?php } ?>
<div class="lower">
<?php if(!akina_option('shownav')){ ?>
<div id="show-nav" class="showNav">
<div class="line line1"></div>
<div class="line line2"></div>
<div class="line line3"></div>
</div>
<?php } ?>
<nav>
<?php wp_nav_menu( array( 'depth' => 2, 'theme_location' => 'primary', 'container' => false ) ); ?>
</nav>
<!-- #site-navigation -->
</div>
</div>
</header>
<!-- #masthead -->
<?php the_headPattern(); ?>
<div id="content" class="site-content">