get_comment_id_fields

函数
get_comment_id_fields ( $post_id = 0 )
参数
  • (int) $post_id Optional. Post ID. Defaults to the current post ID.
    Required:
返回值
  • (string) Hidden input HTML for replying to comments.
定义位置
相关方法
comment_id_fieldsget_comment_idget_comment_guidget_comment_dateget_comment_time
引入
3.0.0
弃用
-

get_comment_id_fields – 这个函数返回包含评论信息的隐藏表单字段,包括评论ID和安全nonce。它通常用在评论表单中。它把评论ID作为一个参数。

检索用于回复评论的隐藏输入HTML。

function get_comment_id_fields( $post_id = 0 ) {
	if ( empty( $post_id ) ) {
		$post_id = get_the_ID();
	}

	$reply_to_id = isset( $_GET['replytocom'] ) ? (int) $_GET['replytocom'] : 0;
	$result      = "<input type='hidden' name='comment_post_ID' value='$post_id' id='comment_post_ID' />n";
	$result     .= "<input type='hidden' name='comment_parent' id='comment_parent' value='$reply_to_id' />n";

	/**
	 * Filters the returned comment ID fields.
	 *
	 * @since 3.0.0
	 *
	 * @param string $result      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', $result, $post_id, $reply_to_id );
}

常见问题

FAQs
查看更多 >