searchwp\entry\native
Da: 4.0.0
Indice
Personalizza l'oggetto nativo di un \SearchWP\Entry.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Oggetto | $native |
Oggetto nativo di una voce | 4.0.0 |
| \SearchWP\Query | $query |
La Query in esecuzione | 4.0.0 |
Esempi
All hooks should be added to your custom SearchWP Customizations Plugin.
Personalizza il titolo di un post quando è un risultato di ricerca
This file contains hidden or 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 ); |

