函数原型
comment_footer_die( string $msg )
函数描述
Displays error message at bottom of comments.
是否弃用
未弃用
函数参数
-
$msg
string
Required - Error Message. Assumed to contain HTML and be sanitized.
函数返回值
无
函数位置
File: wp-admin/includes/comment.php.
函数源码
function comment_footer_die( $msg ) {
echo "<div class='wrap'><p>$msg</p></div>";
require_once ABSPATH . 'wp-admin/admin-footer.php';
die;
}
源码链接
变更日志
无

