回答編集履歴
1
誤字
test
CHANGED
@@ -1,83 +1,3 @@
|
|
1
|
-
自己解決?
|
1
|
+
下記追加で、自己解決?
|
2
|
-
|
3
|
-
|
4
2
|
|
5
3
|
'compare' => '='
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
上記コードを追加することで区分1のAを優先的に表示し、
|
10
|
-
|
11
|
-
その次に区分1のB&区分2の◯を条件とした内容が表示されているようです。
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
```ここに言語を入力
|
16
|
-
|
17
|
-
$posts = new WP_Query( array(
|
18
|
-
|
19
|
-
'post_type' => 'syouhin',
|
20
|
-
|
21
|
-
'posts_per_page' => 5,
|
22
|
-
|
23
|
-
'post_status' => 'publish',
|
24
|
-
|
25
|
-
'meta_query' => array(
|
26
|
-
|
27
|
-
'meta_query' => array(
|
28
|
-
|
29
|
-
'relation' => 'OR',
|
30
|
-
|
31
|
-
array(
|
32
|
-
|
33
|
-
array(
|
34
|
-
|
35
|
-
'key' => 'category01',
|
36
|
-
|
37
|
-
'value' => 'A',
|
38
|
-
|
39
|
-
'compare' => '=',
|
40
|
-
|
41
|
-
),
|
42
|
-
|
43
|
-
),
|
44
|
-
|
45
|
-
array(
|
46
|
-
|
47
|
-
'relation' => 'AND',
|
48
|
-
|
49
|
-
array(
|
50
|
-
|
51
|
-
'key' => 'category01',
|
52
|
-
|
53
|
-
'value' => 'B',
|
54
|
-
|
55
|
-
'compare' => '=',
|
56
|
-
|
57
|
-
),
|
58
|
-
|
59
|
-
array(
|
60
|
-
|
61
|
-
'key' => 'category02',
|
62
|
-
|
63
|
-
'value' => '○',
|
64
|
-
|
65
|
-
'compare' => '=',
|
66
|
-
|
67
|
-
)
|
68
|
-
|
69
|
-
),
|
70
|
-
|
71
|
-
),
|
72
|
-
|
73
|
-
),
|
74
|
-
|
75
|
-
),
|
76
|
-
|
77
|
-
);
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
```
|
82
|
-
|
83
|
-
```
|