mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
19 lines
441 B
JavaScript
19 lines
441 B
JavaScript
|
jQuery(document).ready(function($) {
|
||
|
|
||
|
/**
|
||
|
* Process request to dismiss our admin notice
|
||
|
*/
|
||
|
$('#jetpack-notice .notice-dismiss').click(function() {
|
||
|
|
||
|
//* Data to make available via the $_POST variable
|
||
|
data = {
|
||
|
action: 'bushwick_jetpack_admin_notice',
|
||
|
bushwick_jetpack_admin_nonce: bushwick_jetpack_admin.bushwick_jetpack_admin_nonce
|
||
|
};
|
||
|
|
||
|
//* Process the AJAX POST request
|
||
|
$.post( ajaxurl, data );
|
||
|
|
||
|
return false;
|
||
|
});
|
||
|
});
|