MAW-875: session plugin to must-use

This commit is contained in:
Tony Volpe
2024-02-16 16:58:08 +00:00
parent 9169f08384
commit c9dfa772f7
10 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
jQuery(document).ready(function($) {
$(document).on('click', '.notice-dismiss', function() {
$.ajax({
url: ajaxurl,
type: 'POST',
data: {
action: 'dismiss_notice'
}
});
});
});