SearchWP

searchwp\source\post\attributes\comments\args

Since: 4.0.0

Table of Contents

Control the arguments used to retrieve Comments for a post during indexing.

Parameters

Type Parameter Default Since
Array $comments_args Array with defined post_id code for the current post 4.0.0
Array $args
Key Type Value
post_id Integer Post ID
4.0.0

Examples

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

Include unapproved comments when indexing

<?php
// Include unapproved comments when SearchWP indexes.
add_filter( 'searchwp\source\post\attributes\comments\args', function( $comment_args, $args ) {
$args['include_unapproved'] = true;
return $args;
}, 20, 2 );

How to use this code