comment_footer_die()
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() 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; }