SearchWP

searchwp\query\partial_matches\wildcard_after

Since: 4.0.0

Table of Contents

Control whether a wildcard is added after a search query when performing partial match logic.

Parameters

Type Parameter Default Since
Boolean $enabled true 4.0.0

Examples

All hooks should be added to your custom SearchWP Customizations Plugin.

Disable wildcard after search query

<?php
// Tell SearchWP not to use a wildcard prefix when performing partial match logic.
add_filter( 'searchwp\query\partial_matches\wildcard_after', '__return_false' );

How to use this code