Tagged Questions
1
vote
4answers
620 views
using wp_remote_get to retrieve own url on local host
I have a website in local development at test:8888 and I am trying to get the following to work in my functions.php file.
$response = wp_remote_get( 'test:8888/?p=1' );
print_r($response);
...