mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
4 lines
159 B
Text
4 lines
159 B
Text
add_filter( 'relevanssi_fuzzy_query', 'rlv_match_inside_words' );
|
|
function rlv_match_inside_words( $query ) {
|
|
return "(relevanssi.term LIKE '%#term#%') ";
|
|
}
|