wp_update_comment_type_batch_size filter-hook . WP 5.5.0
Filters the comment batch size for updating the comment type.
Usage
add_filter( 'wp_update_comment_type_batch_size', 'filter_function_name_3546' ); function filter_function_name_3546( $comment_batch_size ){ // filter... return $comment_batch_size; }
- $comment_batch_size(int)
- The comment batch size.
Default: 100
Changelog
Since 5.5.0 | Introduced. |
Where the hook is called
wp_update_comment_type_batch_size
wp-includes/comment.php 3862
$comment_batch_size = (int) apply_filters( 'wp_update_comment_type_batch_size', 100 );