回答編集履歴

2

誤字修正

2019/09/04 02:20

投稿

junjun1479
junjun1479

スコア7

test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  ```php
8
8
 
9
- function search_exclude_custom_post_type( $query ) {
9
+ function search_exclude_custom_taxonomy_type( $query ) {
10
10
 
11
11
  if ( $query->is_search() && $query->is_main_query() && ! is_admin() ) {
12
12
 
@@ -32,6 +32,6 @@
32
32
 
33
33
  }
34
34
 
35
- add_filter( 'pre_get_posts', 'search_exclude_custom_post_type' );
35
+ add_filter( 'pre_get_posts', 'search_exclude_custom_taxonomy_type' );
36
36
 
37
37
  ```

1

参考サイト追加

2019/09/04 02:20

投稿

junjun1479
junjun1479

スコア7

test CHANGED
@@ -1,4 +1,8 @@
1
+ 自己解決しました。
2
+
3
+ [こちらの記事](http://wpcj.net/1359)を参考にカスタマイズして、
4
+
1
- 自己解決しました。以下のコードをfunctions.phpに記述したら、特定のカスタムタクソノミのタームに属するカスタム投稿を検索結果から除外できました。
5
+ 以下のコードをfunctions.phpに記述したら、特定のカスタムタクソノミのタームに属するカスタム投稿を検索結果から除外できました。
2
6
 
3
7
  ```php
4
8