comment_form_after_fields
Fires after the comment fields in the comment form, excluding the textarea.
Использование
add_action( 'comment_form_after_fields', 'wp_kama_comment_form_after_fields_action' );
/**
* Function for `comment_form_after_fields` action-hook.
*
* @return void
*/
function wp_kama_comment_form_after_fields_action(){
// action...
}Список изменений
| С версии 3.0.0 | Введена. |
Где вызывается хук
comment_form_after_fields
wp-includes/comment-template.php 2848
do_action( 'comment_form_after_fields' );