comment_form_top
Fires at the top of the comment form, inside the form tag.
Использование
add_action( 'comment_form_top', 'wp_kama_comment_form_top_action' );
/**
* Function for `comment_form_top` action-hook.
*
* @return void
*/
function wp_kama_comment_form_top_action(){
// action...
}Список изменений
| С версии 3.0.0 | Введена. |
Где вызывается хук
comment_form_top
wp-includes/comment-template.php 2742
do_action( 'comment_form_top' );