SearchWP

searchwp\tokens\apply_rules_to_pattern_matches

Since: 4.0.0

Table of Contents

Control whether SearchWP applies its validation rules (e.g. minimum length) to regular expression (regex) pattern matches.

Parameters

Type Parameter Default Since
Boolean $enabled true 4.0.0

Examples

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

Tell SearchWP to skip rule application for regex pattern matches

<?php
// Tell SearchWP to skip rule application for regex pattern matches.
add_filter( 'searchwp\tokens\apply_rules_to_pattern_matches', '__return_false' );

How to use this code