searchwp\source\post\attributes\comments\author
Da: 4.0.0
Indice
Quando i commenti sono stati aggiunti a una origine basata su WP_Post, controlla se l'autore del commento è indicizzato.
Parametri
| Tipo | Parametro | Predefinito | Da | ||||||
|---|---|---|---|---|---|---|---|---|---|
| Booleano | $enabled |
false |
4.0.0 |
||||||
| Array |
$args
|
4.0.0 |
|||||||
Esempi
Tutti gli hook dovrebbero essere aggiunti al tuo plugin personalizzato SearchWP Customizations Plugin.
Indice autori dei commenti
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 | |
| // Enble Comment Author indexing in SearchWP. | |
| add_filter( 'searchwp\source\post\attributes\comments\author', function( $enabled, $args ) { | |
| return true; | |
| }, 10, 2 ); |
