comment_footer_die()

最后更新于:2021-11-25 21:18:27

comment_footer_die( string$msg)

Display error message at bottom of comments.

参数

$msg

(string) (Required) Error Message. Assumed to contain HTML and be sanitized.

源文件

文件: gc-admin/includes/comment.php

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