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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 ); |