| 1 |
<?php |
| 2 |
defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' ); |
| 3 |
|
| 4 |
$notices = array(); |
| 5 |
|
| 6 |
foreach ( $data as $notice_data ) { |
| 7 |
if ( empty( $notices[ $notice_data['type'] ] ) ) { |
| 8 |
$notices[ $notice_data['type'] ] = array(); |
| 9 |
} |
| 10 |
|
| 11 |
$notices[ $notice_data['type'] ][] = $notice_data; |
| 12 |
} |
| 13 |
|
| 14 |
foreach ( $notices as $type => $type_notices ) { |
| 15 |
?> |
| 16 |
<div class="<?php echo $type; ?> settings-error notice is-dismissible"> |
| 17 |
<?php foreach ( $type_notices as $details ) { ?> |
| 18 |
<p><strong><?php echo wp_kses( $details['message'], [ 'code' => [] ] ); ?></strong></p> |
| 19 |
<?php } ?> |
| 20 |
</div> |
| 21 |
<?php |
| 22 |
} |
| 23 |
|