WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 941 | * @param array $original_args { |
| 942 | * Array of arguments passed to the function. Some or all of these may not be set. |
| 943 | * |
| 944 | * @type string $type Type of comments to count. |
| 945 | * @type int $page Current comment page. |
| 946 | * @type int $per_page Number of comments per page. |
| 947 | * @type int $max_depth Maximum comment threading depth allowed. |
| 948 | * } |
| 949 | */ |
| 950 | return apply_filters( 'get_page_of_comment', (int) $page, $args, $original_args ); |
| 951 | } |
| 952 | |
| 953 | /** |
| 954 | * Does comment contain blacklisted characters or words. |
| 955 | * |
| 956 | * @since 1.5.0 |
| 957 | * |
| 958 | * @param string $author The author of the comment |
| 959 | * @param string $email The email of the comment |