-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
192 lines (129 loc) · 5.52 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="keywords" content="
<?php
// 如果是首页和文章列表页面
if(is_front_page() || is_home()) {
echo get_option('mytheme_keywords');
// 如果是文章详细页面和独立页面
} else if( is_page()) {
echo get_option('mytheme_keywords');
} else if(is_single()) {
$tags = wp_get_post_tags($post->ID);
foreach ($tags as $tag ) {
echo $keywords . $tag->name . ",";}
// 如果是类目页面, 显示类目表述
} else if(is_category()) {
echo get_option('mytheme_keywords');
// 如果是搜索页面, 显示搜索表述
} else if(is_search()) {
echo get_option('mytheme_keywords');
// 如果是标签页面, 显示标签表述
} else if(is_tag()) {
echo get_option('mytheme_keywords');
// 如果是日期页面, 显示日期范围描述
} else if(is_date()) {
echo get_option('mytheme_keywords');
// 其他页面显示博客标题
} else {
echo get_option('mytheme_keywords');
}
?>
" />
<meta name="description" content="
<?php
// 如果是首页和文章列表页面
if(is_front_page() || is_home()) {
echo get_option('mytheme_description');
// 如果是文章详细页面和独立页面
} else if(is_single() ) {
if($post->post_excerpt) {
echo $post->post_excerpt;
} else {
echo substr(strip_tags($post->post_content), 0, 220);
}
// 如果是类目页面, 显示类目表述
} else if(is_category()) {
echo get_option('mytheme_description');
// 如果是搜索页面, 显示搜索表述
} else if(is_search()) {
echo get_option('mytheme_description');
// 如果是标签页面, 显示标签表述
} else if(is_tag()) {
echo get_option('mytheme_description');
// 如果是日期页面, 显示日期范围描述
} else if(is_date()) {
echo get_option('mytheme_description');
// 其他页面显示博客标题
} else {
echo get_option('mytheme_description');
}
?>
" />
<title>
<?php
if (function_exists('is_tag') && is_tag()) {
single_tag_title("Tag Archive for ""); echo '" - '; }
elseif (is_archive()) {
wp_title(''); echo ' Archive - '; }
elseif (is_search()) {
echo 'Search for "'.wp_specialchars($s).'" - '; }
elseif (!(is_404()) && (is_single()) || (is_page())) {
wp_title(''); echo ' - '; }
elseif (is_404()) {
echo 'Not Found - '; }
if (is_home()) {
bloginfo('name'); echo ' - '; bloginfo('description'); }
else {
bloginfo('name'); }
if ($paged>1) {
echo ' - page '. $paged; }
?>
</title>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/zdy1.css" type="text/css" />
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/zdy2.css" type="text/css" />
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.css" type="text/css" />
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?><?php wp_head(); ?>
<!--ָ---->
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/alixixi_jquery.min.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/script.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/s.js"></script>
<script src="<?php bloginfo('template_url'); ?>/png/pngtm.js" type="text/javascript"></script>
<script type="text/javascript">
DD_belatedPNG.fix('div, ul, img, li, input , a , textarea , ol , p , span , h1 , h2 , h3 , h4 , h5');
</script>
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="top">
<div class="top1">
<div class="top1_1"><a>Welcome</a> to visit our website</div>
<div class="top1_2">
<form action="<?php bloginfo('siteurl'); ?>" id="searchform" method="get">
<div class="ss">Search:</div>
<input type="text" id="s" name="s" value="" />
<input type="submit" value="" id="searchsubmit" />
</form>
</div>
</div>
</div>
<div id="page-wrap">
<div class="logo">
<?php if (get_option('mytheme_logo')!=""): ?>
<img src="<?php echo get_option('mytheme_logo'); ?>"/>
<?php else : ?>
<img src="<?php bloginfo('template_url'); ?>/images/logo.png" />
<?php endif; ?>
</div>
<div id="header">
<div id="navigation" ><?php wp_nav_menu(array( 'theme_location' => 'header-menu' ) ); ?></div>
</div>
</div>