SearchWP Documentation

Visualizza la guida all'installazione, sfoglia la Knowledge Base, scopri i numerosi hook di SearchWP

searchwp\source\post\attributes\comment

Da: 4.0.0

Personalizza un Commento prima che venga indicizzato.

Parametri

Tipo Parametro Predefinito Da
Oggetto $comment Il commento indicizzato 4.0.0

Esempi

All hooks should be added to your custom SearchWP Customizations Plugin.

Aggiungi contenuto aggiuntivo al commento durante l'indicizzazione

<?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;
} );

Come usare questo codice