Guest User

Untitled

a guest
Mar 13th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $.ajax( {
  2. url: Slug_API_Settings.root + ‘wp/v2/users/’,
  3. method: ‘POST’,
  4. beforeSend: function ( xhr ) {
  5. xhr.setRequestHeader( ‘X-WP-Nonce’, Slug_API_Settings.nonce );
  6. },
  7. data:{
  8. email: ‘someone@somewhere.net’,
  9. username: ‘someone’,
  10. password: Math.random().toString(36).substring(7)
  11. }
  12. })
  13. .done( function ( response ) {
  14. console.log( response );
  15. })
Add Comment
Please, Sign In to add comment