Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_id_fields

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1165  * @return string Hidden input HTML for replying to comments
1166  */
1167 function get_comment_id_fields( $id = 0 ) {
1168      if ( empty( $id ) )
1169           $id = get_the_ID();
1170
1171      $replytoid = isset($_GET['replytocom']) ? (int) $_GET['replytocom'] : 0;
1172      $result  = "<input type='hidden' name='comment_post_ID' value='$id' id='comment_post_ID' />\n";
1173      $result .= "<input type='hidden' name='comment_parent' id='comment_parent' value='$replytoid' />\n";
1174      return apply_filters('comment_id_fields', $result, $id, $replytoid);
1175 }
1176
1177 /**
1178  * Output hidden input HTML for replying to comments.
1179  *
1180  * @since 2.7.0
1181  * @see get_comment_id_fields() Echoes result
1182  */
1183 function comment_id_fields( $id = 0 ) {