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