質問編集履歴

3

DBの機能だったんですね。知りませんでした。ありがとうございます。

2019/10/17 09:50

投稿

amegahutteruyo
amegahutteruyo

スコア15

test CHANGED
File without changes
test CHANGED
@@ -40,7 +40,7 @@
40
40
 
41
41
  // WP_Query
42
42
 
43
- function get_the_queyr(){
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 $post_query;
53
+ return $the_query;
54
54
 
55
55
  }
56
56
 

2

「my_」の削除

2019/10/17 09:50

投稿

amegahutteruyo
amegahutteruyo

スコア15

test CHANGED
File without changes
test CHANGED
@@ -46,7 +46,7 @@
46
46
 
47
47
  $search_arr = ['りんご','バナナ'];
48
48
 
49
- $args['meta_query'][] = my_get_meta_query_search( $search_arr, 'and', 'search_fields' );
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

誤字等訂正

2019/10/17 09:38

投稿

amegahutteruyo
amegahutteruyo

スコア15

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 my_get_then_queyr(){
43
+ function get_the_queyr(){
44
44
 
45
45
  $args = [];
46
46
 
@@ -58,7 +58,7 @@
58
58
 
59
59
  // 検索
60
60
 
61
- function my_get_meta_query_search( $search_arr, $relation, $meta_key ){
61
+ function get_meta_query_search( $search_arr, $relation, $meta_key ){
62
62
 
63
63
 
64
64