comment_id_fields生成评论表单隐藏域标签
comment_id_fields
- <?php comment_id_fields( int $id ); ?>
- $id
整数型,默认值:0。
提供一个评论ID,隐藏域将基于这条评论来生成。
实例
- <?php comment_id_fields(); ?>
结果:
- <input type="hidden" name="comment_post_ID" value="1" id="comment_post_ID">
- <input type="hidden" name="comment_parent" id="comment_parent" value="2">