searchwp\source\post\attributes\content
Desde: 4.0.0
Tabla de contenidos
Personaliza el contenido de la publicación antes de que sea indexado.
Parámetros
| Tipo | Parámetro | Predeterminado | Desde | ||||||
|---|---|---|---|---|---|---|---|---|---|
| Cadena | $content |
Contenido de la entrada a indexar | 4.0.0 |
||||||
| Matriz |
$args
|
4.0.0 |
|||||||
Ejemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Añadir contenido adicional a la entrada durante la indexación
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 ); |

