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