notice.php
12 lines
| 1 | <?php if ( ! defined( 'ABSPATH' ) ) exit; ?> |
| 2 | <div class="notice notice-success analyst-notice"> |
| 3 | <p> |
| 4 | <strong class="analyst-plugin-name"><?php echo esc_html( $notice->getPluginName() ); ?></strong> |
| 5 | <?php echo wp_kses_post( $notice->getBody() ); ?> |
| 6 | </p> |
| 7 | |
| 8 | <button type="button" class="analyst-notice-dismiss notice-dismiss" analyst-notice-id="<?php echo esc_attr( $notice->getId() ); ?>"> |
| 9 | <span class="screen-reader-text">Dismiss this notice.</span> |
| 10 | </button> |
| 11 | </div> |
| 12 |