searchwp\entry\native
Depuis : 4.0.0
Table des matières
Personnalisez l'objet natif d'une \SearchWP\Entry.
Paramètres
| Type | Paramètre | Défaut | Depuis |
|---|---|---|---|
| Objet | $native |
Objet natif d'une entrée | 4.0.0 |
| \SearchWP\Query | $query |
La requête en cours d'exécution | 4.0.0 |
Exemples
All hooks should be added to your custom SearchWP Customizations Plugin.
Personnalisez le titre d'un article lorsqu'il apparaît dans les résultats de recherche
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 ); |

