IT Nursery
I have a plugin which uses wp_remote_get() and it’s not working on my nginx server so I decided to test this. I created a file called test.php and inserted:...
  • June 3, 2022
  • 0 Comments
I’m trying to get a list of locations from a website called weedmaps. This is the code that I’m using: function call_for_api() { $url="https://api-v2.weedmaps.com/api/v2/listings"; $response = wp_remote_post( $url, array(...
  • May 23, 2022
  • 0 Comments
I’m making a plugin that compares data from external API with meta items in WordPress backoffice. I tried using wp_remote_get method to query my API but it doesn’t return...
  • May 21, 2022
  • 0 Comments