mirror of
https://github.com/afragen/wp-dismiss-notice.git
synced 2026-02-23 21:56:33 +08:00
40 lines
1,014 B
JavaScript
40 lines
1,014 B
JavaScript
/**
|
|
* @output wp-admin/js/dismiss-notice.js
|
|
*
|
|
* @see https://github.com/w3guy/persist-admin-notices-dismissal
|
|
*/
|
|
|
|
(function ($) {
|
|
// Shorthand for ready event.
|
|
$(
|
|
function () {
|
|
$('div[data-dismissible] button.notice-dismiss').on('click',
|
|
function (event) {
|
|
event.preventDefault();
|
|
var $this = $(this);
|
|
|
|
var attr_value, option_name, dismissible_length, data;
|
|
|
|
attr_value = $this.closest('div[data-dismissible]').attr('data-dismissible').split('-');
|
|
|
|
// Remove the dismissible length from the attribute value and rejoin the array.
|
|
dismissible_length = attr_value.pop();
|
|
|
|
option_name = attr_value.join('-');
|
|
|
|
data = {
|
|
'action': 'wp_dismiss_notice',
|
|
'option_name': option_name,
|
|
'dismissible_length': dismissible_length,
|
|
'nonce': window.wp_dismiss_notice.nonce
|
|
};
|
|
|
|
// Run Ajax request.
|
|
$.post(window.wp_dismiss_notice.ajaxurl, data);
|
|
$this.closest('div[data-dismissible]').hide('slow');
|
|
}
|
|
);
|
|
}
|
|
);
|
|
|
|
}(jQuery));
|