Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_form_submit_button

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
2401
2402                          /**
2403                           * Filters the submit button for the comment form to display.
2404                           *
2405                           * @since 4.2.0
2406                           *
2407                           * @param string $submit_button HTML markup for the submit button.
2408                           * @param array  $args          Arguments passed to `comment_form()`.
2409                           */
2410                          $submit_button = apply_filters( 'comment_form_submit_button', $submit_button, $args );
2411
2412                          $submit_field = sprintf(
2413                               $args['submit_field'],
2414                               $submit_button,
2415                               get_comment_id_fields( $post_id )
2416                          );
2417
2418                          /**
2419                           * Filters the submit field for the comment form to display.