searchwp\document\content
Da: 4.0.0
Indice
Personalizza il contenuto del documento estratto.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Stringa | $content |
Contenuto estratto | 4.0.0 |
| \WP_Post | $the_post |
Indicizzazione allegato in corso | 4.0.0 |
Esempi
Tutti gli hook dovrebbero essere aggiunti al tuo plugin personalizzato SearchWP Customizations Plugin.
Personalizza il contenuto del documento prima che venga indicizzato
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 document content before it is indexed by SearchWP. | |
| add_filter( 'searchwp\document\content', function( $content, $the_post ) { | |
| if ( 18 === $the_post->ID ) { | |
| // Add 'coffee' to the document content so it can be searched. | |
| $content .= ' coffee'; | |
| } | |
| return $content; | |
| }, 10, 2 ); |
