06/30/2015 at 11:11 am
#339092
Keymaster
@ Walt
Sorry, no, when searching with such short strings due to db limitations regarding search those searches will use a “LIKE” (includes) query.
That said… if you know a bit of PHP you could alter the query. I believe you would have to change this line of code. Something like this might work:
$like[] = $wpdb->prepare( implode( ' LIKE %s OR ' , $atts['fields']['entry'] ) . ' LIKE %s ', array_fill( 0, count( $atts['fields']['entry'] ), like_escape( $word ) ) );
Let me know if that helps!
