dismissible.php
12 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | ?> |
| 8 | <div class="ac-notice notice is-dismissible <?php echo esc_attr( $this->type . ' ' . $this->id ); ?>" data-dismissible-callback="<?php echo esc_attr( wp_json_encode( $this->dismissible_callback ) ); ?>"> |
| 9 | <div class="ac-notice__body"> |
| 10 | <?php echo $this->message; ?> |
| 11 | </div> |
| 12 | </div> |