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