get_page_of_comment filter-hook . WP 4.4.0
Filters the calculated page on which a comment appears.
Usage
add_filter( 'get_page_of_comment', 'filter_function_name_670', 10, 4 ); function filter_function_name_670( $page, $args, $original_args, $comment_ID ){ // filter... return $page; }
- $page(int)
- Comment page.
- $args(array)
Arguments used to calculate pagination. These include arguments auto-detected by the function, based on query vars, system settings, etc. For pristine arguments passed to the function, see $original_args.
-
type(string)
Type of comments to count. -
page(int)
Calculated current page. -
per_page(int)
Calculated number of comments per page. - max_depth(int)
Maximum comment threading depth allowed.
-
- $original_args(array)
Array of arguments passed to the function. Some or all of these may not be set.
-
type(string)
Type of comments to count. -
page(int)
Current comment page. -
per_page(int)
Number of comments per page. - max_depth(int)
Maximum comment threading depth allowed.
-
- $comment_ID(int)
- ID of the comment.
Changelog
Since 4.4.0 | Introduced. |
Since 4.7.0 | Introduced the $comment_ID parameter. |
Where the hook is called
get_page_of_comment
wp-includes/comment.php 1223
return apply_filters( 'get_page_of_comment', (int) $page, $args, $original_args, $comment_ID );