comment_footer_die()WP 1.0

Displays error message at bottom of comments.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

comment_footer_die( $msg );
$msg(строка) (обязательный)
Error Message. Assumed to contain HTML and be sanitized.

Код comment_footer_die() WP 6.6.1

function comment_footer_die( $msg ) {
	echo "<div class='wrap'><p>$msg</p></div>";
	require_once ABSPATH . 'wp-admin/admin-footer.php';
	die;
}