SearchWP

searchwp\stopwords\suggestions

Since: 4.0.0

Table of Contents

Control whether SearchWP suggests Stopwords.

Parameters

Type Parameter Default Since
Boolean $enabled true 4.0.0

Examples

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

Prevent SearchWP from making Stopword suggestions

Disable SearchWP’s Stopword suggestions.

<?php
// Disable SearchWP's Stopword suggestions.
add_filter( 'searchwp\stopwords\suggestions', '__return_false' );

How to use this code