https://blog.onlywire.com/category/content-submission/feed/
This is my feed URL. For some reason, I am not able to parse it using PHP. What am I missing?
The script:
$ch = curl_init( $feed_curl );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 0);
$data = curl_exec($ch);
echo $data;