error.php
7 lines
| 1 | <?php |
| 2 | |
| 3 | defined( 'ABSPATH' ) || exit; |
| 4 | // phpcs:ignoreFile WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- variables in template files inherited from controller render() scope |
| 5 | foreach ($errors as $msg): ?> |
| 6 | <div class="error"><p><?php echo wp_kses_post($msg) ?></p></div> |
| 7 | <?php endforeach ?> |