apply_filters( 'comment_id_fields', string $comment_id_fields, int $post_id, int $reply_to_id )
- Since
- 3.0.0
Filters the returned comment ID fields.
Compatibility
- WordPress
- since 3.0.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$comment_id_fieldsstring- The HTML-formatted hidden ID field comment elements.
$post_idint- The post ID.
$reply_to_idint- The ID of the comment being replied to.
Where this hook fires · 1
wp-includes/comment-template.php:2070get_comment_id_fields()
Source code
* @since 3.0.0 * * @param string $comment_id_fields The HTML-formatted hidden ID field comment elements. * @param int $post_id The post ID. * @param int $reply_to_id The ID of the comment being replied to. */ return apply_filters( 'comment_id_fields', $comment_id_fields, $post_id, $reply_to_id );} /** * Outputs hidden input HTML for replying to comments. * * Adds two hidden inputs to the comment form to identify the `comment_post_ID`Changelog
Introduced in 3.0.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.8.8 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.