get_comment_id_fields( int|WP_Post|null $post = null )
Retrieves hidden input HTML for replying to comments.
Parameters
- $post
-
(Optional) The post the comment is being displayed for.<br> Defaults to the current global post.
Default value: null
Return
(string) Hidden input HTML for replying to comments.
Source
File: wp-includes/comment-template.php
function get_comment_id_fields( $id = 0 ) {
if ( empty( $id ) )
$id = get_the_ID();
$replytoid = isset($_GET['replytocom']) ? (int) $_GET['replytocom'] : 0;
$result = "<input type='hidden' name='comment_post_ID' value='$id' id='comment_post_ID' />\n";
$result .= "<input type='hidden' name='comment_parent' id='comment_parent' value='$replytoid' />\n";
/**
* Filters the returned comment id fields.
*
* @since WP-3.0.0
*
* @param string $result The HTML-formatted hidden id field comment elements.
* @param int $id The post ID.
* @param int $replytoid The id of the comment being replied to.
*/
return apply_filters( 'comment_id_fields', $result, $id, $replytoid );
}
Changelog
Version | Description |
---|---|
6.2.0 | Renamed $post_id to $post and added WP_Post support. |
3.0.0 | Introduced. |