HTTP request on localhost failing

To make wp_remote_get() work you need to check your php.ini file. In your php.ini file you need to set allow_url_include = On, which by default is set as allow_url_include = Off. Otherwise wp_remote_get() will not work.

Reference: allow_url_include

Leave a Comment