-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive-article.php
204 lines (195 loc) · 11.1 KB
/
archive-article.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
193
194
195
196
197
198
199
200
201
202
203
204
<?php get_header(); ?>
<script type="text/javascript">
$(function(){
$('.list-group li').addClass('list-group-item');
})
</script>
<div class="container div-archive-container">
<div class="row div-section">
<div class="div-section-title div-archive-section-title">
<div>
<p><i class="fa fa-laptop" aria-hidden="true"></i> PCユーザー向けの記事</p>
</div>
</div>
<div class="div-archive-section-recent">
<?php
$myQuery = new WP_Query();
$param = array(
'paged' => 0,
'posts_per_page' => '3',
'post_type' => array('article'),
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
'offset'=>'0',
'tax_query' => array( //(array) - タクソノミーパラメーターを指定する(バージョン3.1以降で有効)。
'relation' => 'AND', //(string) - それぞれのタクソノミーを指定するのに'AND'か'OR'が使用できる。
array(
'taxonomy' => 'tech', //(string) - タクソノミー。
'field' => 'slug', //(string) - IDかスラッグのどちらでタクソノミー項を選択するか
'terms' => array( 'it' ), //(int/string/array) - タクソノミー項
'include_children' => true, //(bool) - 階層構造を持ったタクソノミーの場合に、子タクソノミー項を含めるかどうか。デフォルトはtrue
'operator' => 'IN' //(string) - テスト用の演算子。'IN' 'NOT IN' 'AND'のいずれかが使用できる
),
)
);
$myQuery->query($param);
if ($myQuery->have_posts()) :
while ($myQuery->have_posts()) : $myQuery->the_post(); ?>
<div class="col-sm-4 a-archive-subrecent">
<a href="<?php the_permalink(); ?>">
<img class="img-archive-recent-thumbnail" src="<?php echo get_thumbnail_url(has_post_thumbnail()) ?>" alt="">
<div>
<p class="p-home-section-recent-date"><?php the_time('Y/n/j'); ?></p>
<p class="p-archive-sub-title"><?php echo mb_substr(get_the_title(), 0, 100); ?></p>
</div>
</a>
</div>
<?php
endwhile; // 繰り返し処理終了
else : // ここから記事が見つからなかった場合の処理
endif;
?>
</div>
<div class="div-archive-section-recent">
<?php
$myQuery = new WP_Query();
$param = array(
'paged' => 0,
'posts_per_page' => '3',
'post_type' => array('article'),
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
'offset'=>'3',
'tax_query' => array( //(array) - タクソノミーパラメーターを指定する(バージョン3.1以降で有効)。
'relation' => 'AND', //(string) - それぞれのタクソノミーを指定するのに'AND'か'OR'が使用できる。
array(
'taxonomy' => 'tech', //(string) - タクソノミー。
'field' => 'slug', //(string) - IDかスラッグのどちらでタクソノミー項を選択するか
'terms' => array( 'it' ), //(int/string/array) - タクソノミー項
'include_children' => true, //(bool) - 階層構造を持ったタクソノミーの場合に、子タクソノミー項を含めるかどうか。デフォルトはtrue
'operator' => 'IN' //(string) - テスト用の演算子。'IN' 'NOT IN' 'AND'のいずれかが使用できる
),
)
);
$myQuery->query($param);
if ($myQuery->have_posts()) :
while ($myQuery->have_posts()) : $myQuery->the_post(); ?>
<div class="col-sm-4 a-archive-subrecent">
<a href="<?php the_permalink(); ?>">
<img class="img-archive-recent-thumbnail" src="<?php echo get_thumbnail_url(has_post_thumbnail()) ?>" alt="">
<div>
<p class="p-home-section-recent-date"><?php the_time('Y/n/j'); ?></p>
<p class="p-archive-sub-title"><?php echo mb_substr(get_the_title(), 0, 100); ?></p>
</div>
</a>
</div>
<?php
endwhile; // 繰り返し処理終了
else : // ここから記事が見つからなかった場合の処理
endif;
?>
</div>
<div class="div-section-title div-archive-section-title">
<div>
<p><i class="fa fa-code" aria-hidden="true"></i> デベロッパー向けの記事</p>
</div>
</div>
<div class="div-archive-section-recent">
<?php
query_posts("tech=it" . "&posts_per_page=-1");
$myQuery = new WP_Query();
$param = array(
'paged' => 0,
'posts_per_page' => '3',
'post_type' => array('article'),
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
'offset'=>'0',
'tax_query' => array( //(array) - タクソノミーパラメーターを指定する(バージョン3.1以降で有効)。
'relation' => 'AND', //(string) - それぞれのタクソノミーを指定するのに'AND'か'OR'が使用できる。
array(
'taxonomy' => 'tech', //(string) - タクソノミー。
'field' => 'slug', //(string) - IDかスラッグのどちらでタクソノミー項を選択するか
'terms' => array( 'program' ), //(int/string/array) - タクソノミー項
'include_children' => true, //(bool) - 階層構造を持ったタクソノミーの場合に、子タクソノミー項を含めるかどうか。デフォルトはtrue
'operator' => 'IN' //(string) - テスト用の演算子。'IN' 'NOT IN' 'AND'のいずれかが使用できる
),
)
);
$myQuery->query($param);
if ($myQuery->have_posts()) :
while ($myQuery->have_posts()) : $myQuery->the_post(); ?>
<div class="col-sm-4 a-archive-subrecent">
<a href="<?php the_permalink(); ?>">
<img class="img-archive-recent-thumbnail" src="<?php echo get_thumbnail_url(has_post_thumbnail()) ?>" alt="">
<div>
<p class="p-home-section-recent-date"><?php the_time('Y/n/j'); ?></p>
<p class="p-archive-sub-title"><?php echo mb_substr(get_the_title(), 0, 100); ?></p>
</div>
</a>
</div>
<?php
endwhile; // 繰り返し処理終了
else : // ここから記事が見つからなかった場合の処理
endif;
?>
</div>
<div class="div-archive-section-recent">
<?php
query_posts("tech=it" . "&posts_per_page=-1");
$myQuery = new WP_Query();
$param = array(
'paged' => 0,
'posts_per_page' => '3',
'post_type' => array('article'),
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
'offset'=>'3',
'tax_query' => array( //(array) - タクソノミーパラメーターを指定する(バージョン3.1以降で有効)。
'relation' => 'AND', //(string) - それぞれのタクソノミーを指定するのに'AND'か'OR'が使用できる。
array(
'taxonomy' => 'tech', //(string) - タクソノミー。
'field' => 'slug', //(string) - IDかスラッグのどちらでタクソノミー項を選択するか
'terms' => array( 'program' ), //(int/string/array) - タクソノミー項
'include_children' => true, //(bool) - 階層構造を持ったタクソノミーの場合に、子タクソノミー項を含めるかどうか。デフォルトはtrue
'operator' => 'IN' //(string) - テスト用の演算子。'IN' 'NOT IN' 'AND'のいずれかが使用できる
),
)
);
$myQuery->query($param);
if ($myQuery->have_posts()) :
while ($myQuery->have_posts()) : $myQuery->the_post(); ?>
<div class="col-sm-4 a-archive-subrecent">
<a href="<?php the_permalink(); ?>">
<img class="img-archive-recent-thumbnail" src="<?php echo get_thumbnail_url(has_post_thumbnail()) ?>" alt="">
<div>
<p class="p-home-section-recent-date"><?php the_time('Y/n/j'); ?></p>
<p class="p-archive-sub-title"><?php echo mb_substr(get_the_title(), 0, 100); ?></p>
</div>
</a>
</div>
<?php
endwhile; // 繰り返し処理終了
else : // ここから記事が見つからなかった場合の処理
endif;
?>
</div>
<div class="div-section-title div-archive-section-title">
<div>
<p><i class="fa fa-search" aria-hidden="true"></i> カテゴリーから探す</p>
</div>
</div>
<div class="div-archive-category">
<ul class="list-group">
<?php
wp_list_categories('title_li=&taxonomy=tech');
?>
</ul>
</div>
</div>
</div>
<?php get_footer(); ?>