Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_form_default_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
2424      );
2425
2426      /**
2427       * Filters the default comment form fields.
2428       *
2429       * @since 3.0.0
2430       *
2431       * @param string[] $fields Array of the default comment fields.
2432       */
2433      $fields = apply_filters( 'comment_form_default_fields', $fields );
2434
2435      $defaults = array(
2436           'fields'               => $fields,
2437           'comment_field'        => sprintf(
2438                '<p class="comment-form-comment">%s %s</p>',
2439                sprintf(
2440                     '<label for="comment">%s</label>',
2441                     _x( 'Comment', 'noun' )
2442                ),