comment_form_must_log_in_after action-hookWP 3.0.0

Fires after the HTML-formatted 'must log in after' message in the comment form.

Usage

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...
}

Changelog

Since 3.0.0 Introduced.

Where the hook is called

comment_form()
comment_form_must_log_in_after
wp-includes/comment-template.php 2720
do_action( 'comment_form_must_log_in_after' );

Where the hook is used in WordPress

Usage not found.