searchwp\entry\native
Desde: 4.0.0
Sumário
Personalize o objeto nativo de uma \SearchWP\Entry.
Parâmetros
| Tipo | Parâmetro | Padrão | Desde |
|---|---|---|---|
| Objeto | $native |
Objeto nativo de uma Entrada | 4.0.0 |
| \SearchWP\Query | $query |
A consulta que está sendo executada | 4.0.0 |
Exemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Personalize o Título de um Post quando ele for um resultado de pesquisa
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 ); |

