SearchWP

searchwp\query\tokens\use_stems

Since: 4.0.0

Table of Contents

Control whether token keyword stems are used for a Query.

Parameters

Type Parameter Default Since
Boolean $enabled State of checkbox for Engine Settings 4.0.0
\SearchWP\Query $query The Query being run 4.0.0

Examples

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

Disable keyword stemming for all Engines

<?php
// Disable keyword stemming for all Engines in SearchWP.
add_filter( 'searchwp\query\tokens\use_stems', '__return_false' );

How to use this code