SearchWP

searchwp\highlighter\partial_matches

Since: 4.0.0

Table of Contents

Control whether highlighting considers partial matches.

Parameters

Type Parameter Default Since
Boolean $enabled State of partial matches checkbox on Advanced tab of SearchWP settings screen 4.0.0

Examples

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

Enable highlighter partial matches

<?php
// Enable highlighter partial matches in SearchWP.
add_filter( 'searchwp\highlighter\partial_matches', '__return_true' );

How to use this code