searchwp\source\post\attributes\comments\author
Desde: 4.0.0
Tabla de contenidos
Cuando se han añadido Comentarios a una Fuente basada en WP_Post, controle si el Autor del Comentario se indexa.
Parámetros
| Tipo | Parámetro | Predeterminado | Desde | ||||||
|---|---|---|---|---|---|---|---|---|---|
| Booleano | $enabled |
false |
4.0.0 |
||||||
| Matriz |
$args
|
4.0.0 |
|||||||
Ejemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Indexar Autores de Comentarios
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 ); |

