Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. function create_nonce() {
  2. return wp_create_nonce('my-nonce');
  3. }
  4.  
  5. add_action('wp_ajax_create_nonce', 'create_nonce');
  6. add_action('wp_ajax_nopriv_create_nonce', 'create_nonce');
  7.  
  8. $('form').on('submit', function(e){
  9. e.preventDefault();
  10. var $form = $(this);
  11.  
  12. request('create_nonce', function(nonce){
  13. // Append the fresh nonce to the form
  14. $form.append('<input type="hidden" name="nonce" value="'+nonce+'">');
  15.  
  16. // Proceed with the form submission...
  17. });
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement