Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_form_defaults

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
2256      /**
2257       * Filters the comment form default arguments.
2258       *
2259       * Use {@see 'comment_form_default_fields'} to filter the comment fields.
2260       *
2261       * @since 3.0.0
2262       *
2263       * @param array $defaults The default comment form arguments.
2264       */
2265      $args = wp_parse_args( $args, apply_filters( 'comment_form_defaults', $defaults ) );
2266
2267      // Ensure that the filtered args contain all required default values.
2268      $args = array_merge( $defaults, $args );
2269
2270      /**
2271       * Fires before the comment form.
2272       *
2273       * @since 3.0.0
2274       */