searchwp\source\post\attributes\comment
Desde: 4.0.0
Tabla de contenidos
Personaliza un Comentario antes de que sea indexado.
Parámetros
| Tipo | Parámetro | Predeterminado | Desde |
|---|---|---|---|
| Objeto | $comment |
El comentario que se está indexando | 4.0.0 |
Ejemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Añadir contenido adicional al comentario 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 comment during indexing in SearchWP. | |
| add_filter( 'searchwp\source\post\attributes\comment', function( $comment ) { | |
| // Add 'coffee" to the comment content so it can be searched. | |
| $comment->comment_content .= ' coffee'; | |
| return $comment; | |
| } ); |

