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
2189      $required_text = sprintf( ' ' . __('Required fields are marked %s'), '<span class="required">*</span>' );
2190
2191      /**
2192       * Filters the default comment form fields.
2193       *
2194       * @since 3.0.0
2195       *
2196       * @param array $fields The default comment fields.
2197       */
2198      $fields = apply_filters( 'comment_form_default_fields', $fields );
2199      $defaults = array(
2200           'fields'               => $fields,
2201           'comment_field'        => '<p class="comment-form-comment"><label for="comment">' . _x( 'Comment', 'noun' ) . '</label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" aria-required="true" required="required"></textarea></p>',
2202           /** This filter is documented in wp-includes/link-template.php */
2203           'must_log_in'          => '<p class="must-log-in">' . sprintf(
2204                                         /* translators: %s: login URL */
2205                                         __( 'You must be <a href="%s">logged in</a> to post a comment.' ),
2206                                         wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) )
2207                                     ) . '</p>',