Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created March 29, 2022 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save searchwpgists/2c6f281ec7882624991097e1b885aa63 to your computer and use it in GitHub Desktop.
Save searchwpgists/2c6f281ec7882624991097e1b885aa63 to your computer and use it in GitHub Desktop.
Customize the Title of a Post when it is a search result in SearchWP
<?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 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment