質問編集履歴
3
DBの機能だったんですね。知りませんでした。ありがとうございます。
test
CHANGED
File without changes
|
test
CHANGED
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
// WP_Query
|
42
42
|
|
43
|
-
function get_the_quey
|
43
|
+
function get_the_query(){
|
44
44
|
|
45
45
|
$args = [];
|
46
46
|
|
@@ -50,7 +50,7 @@
|
|
50
50
|
|
51
51
|
$the_query = new WP_Query( $args );
|
52
52
|
|
53
|
-
return $
|
53
|
+
return $the_query;
|
54
54
|
|
55
55
|
}
|
56
56
|
|
2
「my_」の削除
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,7 +46,7 @@
|
|
46
46
|
|
47
47
|
$search_arr = ['りんご','バナナ'];
|
48
48
|
|
49
|
-
$args['meta_query'][] =
|
49
|
+
$args['meta_query'][] = get_meta_query_search( $search_arr, 'and', 'search_fields' );
|
50
50
|
|
51
51
|
$the_query = new WP_Query( $args );
|
52
52
|
|
1
誤字等訂正
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
ご存知
|
15
|
+
ご存知の方がいらっしゃいましたら教えて頂けませんでしょうか。
|
16
16
|
|
17
17
|
|
18
18
|
|
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
// WP_Query
|
42
42
|
|
43
|
-
function
|
43
|
+
function get_the_queyr(){
|
44
44
|
|
45
45
|
$args = [];
|
46
46
|
|
@@ -58,7 +58,7 @@
|
|
58
58
|
|
59
59
|
// 検索
|
60
60
|
|
61
|
-
function
|
61
|
+
function get_meta_query_search( $search_arr, $relation, $meta_key ){
|
62
62
|
|
63
63
|
|
64
64
|
|