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
1785      /**
1786       * Filter the returned comment id fields.
1787       *
1788       * @since 3.0.0
1789       *
1790       * @param string $result    The HTML-formatted hidden id field comment elements.
1791       * @param int    $id        The post ID.
1792       * @param int    $replytoid The id of the comment being replied to.
1793       */
1794      return apply_filters( 'comment_id_fields', $result, $id, $replytoid );
1795 }
1796
1797 /**
1798  * Output hidden input HTML for replying to comments.
1799  *
1800  * @since 2.7.0
1801  *
1802  * @param int $id Optional. Post ID. Default current post ID.
1803  */