<?php

// Make SearchWP's fuzzy matching more strict.
// The scale is 0-100 going from furthest match (lowest, 0) 
//        to closest match (highest, 100).
add_filter( 'searchwp\query\partial_matches\fuzzy\threshold', function( $threshold ) {
  return 80;
} );