Skip to content

Instantly share code, notes, and snippets.

@garyc40
Created October 3, 2012 15:31
Show Gist options
  • Save garyc40/3827593 to your computer and use it in GitHub Desktop.
Save garyc40/3827593 to your computer and use it in GitHub Desktop.
WordPress AJAX & Nonces pt.2
jQuery.post(
MyAjax.ajaxurl,
{
action : 'myajax-submit',
postID : MyAjax.postID,
// send the nonce along with the request
postCommentNonce : MyAjax.postCommentNonce
},
function( response ) {
alert( response );
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment