How to decode JSON data in WordPress?
for 8 hours now I have been trying to parse this jSON response data {"status":"200","message":"Welcome to spakkolos.com! You are welcome. Stay tuned"} I have tried the followig, no luck: $response = wp_remote_request( "https://loopwi.com/json"); $body = wp_remote_retrieve_body($response); $json = json_decode($body); echo…