SearchWP Documentation

View the installation guide, browse the Knowledge Base, find out about SearchWP’s many hooks

searchwp\debug

Since: 4.0.0

Table of Contents

Control whether debugging is enabled.

Parameters

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

Examples

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

Enable debugging

<?php
// Enable debugging in SearchWP.
add_filter( 'searchwp\debug', '__return_true' );

How to use this code