SearchWP

searchwp\entry\native

Since: 4.0.0

Table of Contents

Customize the native object of a \SearchWP\Entry.

Parameters

Type Parameter Default Since
Object $native Native object of an Entry 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 Title of a Post when it is a search result

<?php
// Customize the Title of a Post when it is a search result in SearchWP.
add_filter( 'searchwp\entry\native', function( $native, $query ) {
if ( $native instanceof \WP_Post ) {
$native->post_title .= ' search result!';
}
return $native;
}, 20, 2 );

How to use this code