searchwp\source\post\attributes\content
Desde: 4.0.0
Sumário
Personalize o conteúdo do post antes que ele seja indexado.
Parâmetros
| Tipo | Parâmetro | Padrão | Desde | ||||||
|---|---|---|---|---|---|---|---|---|---|
| String | $content |
Conteúdo do post a ser indexado | 4.0.0 |
||||||
| Array |
$args
|
4.0.0 |
|||||||
Exemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Adicionar conteúdo adicional ao post durante a indexação
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 | |
| // Add additional content to post during indexing in SearchWP. | |
| add_filter( 'searchwp\source\post\attributes\content', function( $content, $args ) { | |
| if ( 48 !== $args['post']->ID ) { | |
| return $content; | |
| } | |
| // Add 'coffee" to the content for Page 48 so it can be searched. | |
| $content .= ' coffee'; | |
| return $content; | |
| }, 20, 2 ); |

