SearchWP

searchwp\query\output_suggested_search

Since: 4.0.0

Table of Contents

Control whether SearchWP automatically suggests search fixes.

Parameters

Type Parameter Default Since
Boolean $enabled State of search suggestions checkbox on Advanced tab of SearchWP settings screen 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.

Enable search suggestions

<?php
// Enable automatic search suggestions in SearchWP.
add_filter( 'searchwp\query\output_suggested_search', '__return_true' );

How to use this code