Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2016
402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $.ajax({
  2.     type: 'GET',
  3.     url: myapi.myapi_url + '/posts',
  4.     beforeSend:function(xhr){
  5.         xhr.setRequestHeader('X-WP-Nonce', myapi.nonce);
  6.     },
  7.     data: {
  8.         post_type: params.post_type
  9.     },
  10.     success:function(data){
  11.         console.log(data);
  12.     },
  13.     error:function(data){
  14.         console.log(data);
  15.     }
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement