SearchWP

searchwp\query\results

Since: 4.0.0

Table of Contents

Modify the results found by SearchWP.

Parameters

Type Parameter Default Since
Array $results Results of Query 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.

Customize the results returned

<?php
// Customize the results returned by SearchWP.
add_filter( 'searchwp\query\results', function( $results, $query ) {
// This is where you can manipulate the $results array of results.
return $results;
}, 30, 2 );

How to use this code