searchwp\highlighter\case_insensitive
Since: 4.0.0
Table of Contents
Control case sensitivity when highlighting.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Boolean | $enabled |
true |
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Make highlighting case sensitive
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Make highlighting case sensitive in SearchWP. | |
add_filter( 'searchwp\highlighter\case_insensitive', '__return_false' ); |