mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://wordpress.org/support/topic/how-to-do-partial-word-search-only-from-beginning-of-word/
4 lines
152 B
Text
4 lines
152 B
Text
add_filter( 'relevanssi_fuzzy_query', 'rlv_match_beginning' );
|
|
function rlv_match_beginning( $query ) {
|
|
return "(relevanssi.term LIKE '%#term#') ";
|
|
}
|