comment_form_after
Fires after the comment form.
Usage
add_action( 'comment_form_after', 'wp_kama_comment_form_after_action' ); /** * Function for `comment_form_after` action-hook. * * @return void */ function wp_kama_comment_form_after_action(){ // action... }
Changelog
Since 3.0.0 | Introduced. |
Where the hook is called
comment_form_after
wp-includes/comment-template.php 2888
do_action( 'comment_form_after' );