Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?php
  2.  
  3. if (isset($_POST['ads_licensekey']) && wp_verify_nonce($_POST['ads_license'], 'ads_setting_action')) {
  4. $license = $_POST['ads_licensekey'];
  5.  
  6. if ($license != '') {
  7. update_site_option('ads-license', $license);
  8. $response = wp_remote_post('https://alidropship.com/?rest', array(
  9. 'method' => 'POST',
  10. 'body' => array('key' => $license, 'site' => get_bloginfo('url'))
  11. ));
  12.  
  13. if (is_wp_error($response)) {
  14. $error_message = $response->get_error_message();
  15. ads_set_alert(__('Could not connection.', 'ads') . ' ' . $error_message);
  16. } else {
  17. $foo = json_decode($response['body']);
  18. .....................................................
  19. .........................
  20. .........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement