SearchWP

searchwp\statistics\log

Since: 4.0.0

Table of Contents

Control whether SearchWP logs this search.

Parameters

Type Parameter Default Since
Boolean $enabled true (if the search query is not ignored) 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.

Disable logging of searches for anyone who is logged in

<?php
// Disable SearchWP's logging of searches for anyone who is logged in.
add_filter( 'searchwp\statistics\log', function( $enabled, $query ) {
return ! is_user_logged_in();
}, 20, 2 );

How to use this code