質問編集履歴
1
該当していると思うコードを載せました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -17,3 +17,205 @@
|
|
17
17
|
ちなみに、私はプログラミングを始めたばかりで学んだものもHTML,CSSのみなのでPHPやJavascript,jQueryは全く分かりません。
|
18
18
|
|
19
19
|
何を載せればいいのかも全く検討がつかないので、必要なコードがありましたら返信にてお知らせください。
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
※追記
|
24
|
+
|
25
|
+
「必要なコードを載せて欲しい」と返信をいただいたので、該当しそうなコードを載せます。
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
```PHP
|
30
|
+
|
31
|
+
<?php
|
32
|
+
|
33
|
+
/**
|
34
|
+
|
35
|
+
* The Header for our theme.
|
36
|
+
|
37
|
+
*
|
38
|
+
|
39
|
+
*
|
40
|
+
|
41
|
+
* @package Adagio Lite
|
42
|
+
|
43
|
+
*/
|
44
|
+
|
45
|
+
?>
|
46
|
+
|
47
|
+
<!DOCTYPE html>
|
48
|
+
|
49
|
+
<html class="no-js" <?php language_attributes(); ?>>
|
50
|
+
|
51
|
+
<head>
|
52
|
+
|
53
|
+
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
54
|
+
|
55
|
+
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=2.0, user-scalable=yes" />
|
56
|
+
|
57
|
+
<link rel="profile" href="http://gmpg.org/xfn/11">
|
58
|
+
|
59
|
+
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
|
60
|
+
|
61
|
+
<?php wp_head(); ?>
|
62
|
+
|
63
|
+
</head>
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
<body <?php body_class(); ?>>
|
68
|
+
|
69
|
+
<div id="container">
|
70
|
+
|
71
|
+
<?php if ( is_front_page ()) : ?>
|
72
|
+
|
73
|
+
<div class="slogan">
|
74
|
+
|
75
|
+
<h2 class="site-description"> <span>
|
76
|
+
|
77
|
+
<?php bloginfo( 'description' ); ?>
|
78
|
+
|
79
|
+
</span> </h2>
|
80
|
+
|
81
|
+
</div>
|
82
|
+
|
83
|
+
<div id="line-arrow"></div>
|
84
|
+
|
85
|
+
<?php if ( has_nav_menu( 'social' ) ) {
|
86
|
+
|
87
|
+
wp_nav_menu(
|
88
|
+
|
89
|
+
array(
|
90
|
+
|
91
|
+
'theme_location' => 'social',
|
92
|
+
|
93
|
+
'container' => 'div',
|
94
|
+
|
95
|
+
'container_id' => 'menu-social',
|
96
|
+
|
97
|
+
'container_class' => 'top-social-menu',
|
98
|
+
|
99
|
+
'menu_id' => 'menu-social-items',
|
100
|
+
|
101
|
+
'menu_class' => 'menu-items',
|
102
|
+
|
103
|
+
'depth' => 1,
|
104
|
+
|
105
|
+
'link_before' => '<span class="screen-reader-text">',
|
106
|
+
|
107
|
+
'link_after' => '</span>',
|
108
|
+
|
109
|
+
'fallback_cb' => '',
|
110
|
+
|
111
|
+
)
|
112
|
+
|
113
|
+
);
|
114
|
+
|
115
|
+
} ?>
|
116
|
+
|
117
|
+
<?php endif ?>
|
118
|
+
|
119
|
+
<div id="header">
|
120
|
+
|
121
|
+
<div id="headerin">
|
122
|
+
|
123
|
+
<div id="headerline">
|
124
|
+
|
125
|
+
<div id="logo">
|
126
|
+
|
127
|
+
<?php the_custom_logo(); ?>
|
128
|
+
|
129
|
+
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
|
130
|
+
|
131
|
+
<h1 class="site-title">
|
132
|
+
|
133
|
+
<?php bloginfo( 'name' ); ?>
|
134
|
+
|
135
|
+
</h1>
|
136
|
+
|
137
|
+
</a> </div>
|
138
|
+
|
139
|
+
<?php if ( has_nav_menu( 'main-menu' ) || has_nav_menu( 'secondary-menu' ) || is_active_sidebar( 'sidebar-1' ) ) : ?>
|
140
|
+
|
141
|
+
<div class="menu-button"> <a class="btn-open" href="#a">
|
142
|
+
|
143
|
+
<div class="bar1"></div>
|
144
|
+
|
145
|
+
<div class="bar2"></div>
|
146
|
+
|
147
|
+
<div class="bar3"></div>
|
148
|
+
|
149
|
+
</a> </div>
|
150
|
+
|
151
|
+
<div class="overlay">
|
152
|
+
|
153
|
+
<div class="inner-overlay">
|
154
|
+
|
155
|
+
<?php if ( has_nav_menu( 'main-menu' ) ) {
|
156
|
+
|
157
|
+
wp_nav_menu(
|
158
|
+
|
159
|
+
array(
|
160
|
+
|
161
|
+
'theme_location' => 'main-menu',
|
162
|
+
|
163
|
+
'container_class' => 'mainmenu',
|
164
|
+
|
165
|
+
'menu_class' => '',
|
166
|
+
|
167
|
+
'fallback_cb' => false
|
168
|
+
|
169
|
+
)
|
170
|
+
|
171
|
+
);
|
172
|
+
|
173
|
+
} ?>
|
174
|
+
|
175
|
+
<?php if ( has_nav_menu( 'secondary-menu' ) ) {
|
176
|
+
|
177
|
+
wp_nav_menu(
|
178
|
+
|
179
|
+
array(
|
180
|
+
|
181
|
+
'theme_location' => 'secondary-menu',
|
182
|
+
|
183
|
+
'container_class' => 'secondary-menu',
|
184
|
+
|
185
|
+
'menu_class' => '',
|
186
|
+
|
187
|
+
'fallback_cb' => false
|
188
|
+
|
189
|
+
)
|
190
|
+
|
191
|
+
);
|
192
|
+
|
193
|
+
} ?>
|
194
|
+
|
195
|
+
<?php get_sidebar(); ?>
|
196
|
+
|
197
|
+
</div>
|
198
|
+
|
199
|
+
</div>
|
200
|
+
|
201
|
+
<?php endif ?>
|
202
|
+
|
203
|
+
</div>
|
204
|
+
|
205
|
+
</div>
|
206
|
+
|
207
|
+
</div>
|
208
|
+
|
209
|
+
<div id="wrapper">
|
210
|
+
|
211
|
+
<?php if (is_front_page() && ( has_header_image() || is_active_sidebar( 'sidebar-2' ) )) {
|
212
|
+
|
213
|
+
get_template_part( 'topsection' );
|
214
|
+
|
215
|
+
} ?>
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
```
|
220
|
+
|
221
|
+
ヘッダーの部分で困っているので、該当していると思った”header.php”を載せました。
|