html-notice-custom.php 452 B

1234567891011121314
  1. <?php
  2. /**
  3. * Admin View: Custom Notices
  4. */
  5. if ( ! defined( 'ABSPATH' ) ) {
  6. exit;
  7. }
  8. ?>
  9. <div id="message" class="updated woocommerce-message">
  10. <a class="woocommerce-message-close notice-dismiss" href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'wc-hide-notice', $notice ), 'woocommerce_hide_notices_nonce', '_wc_notice_nonce' ) ); ?>"><?php _e( 'Dismiss', 'woocommerce' ); ?></a>
  11. <?php echo wp_kses_post( wpautop( $notice_html ) ); ?>
  12. </div>