searchwp\query\search_string
4.0.0以降
クエリの検索文字列をカスタマイズします。
パラメータ
| タイプ | パラメータ | デフォルト | 提供開始 |
|---|---|---|---|
| 文字列 | $search_string |
送信された検索文字列 | 4.0.0 |
| \SearchWP\Query | $query |
実行中のクエリ | 4.0.0 |
例
All hooks should be added to your custom SearchWP Customizations Plugin.
検索時に製品コードからハイフンを削除する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Remove hyphens from product codes when searching in SearchWP. | |
| add_filter( 'searchwp\query\search_string', function( $search_string, $query ) { | |
| return str_replace( '-', '', $search_string ); | |
| }, 30, 2 ); |

