Trying to just retrieve blog post and print the contents to a site. I am using the printFeed method from the documentation but it just seems to print the title. I need the title,body,photos,comments,etc.
function printFeed($feed)
{
$i = 0;
foreach($feed->entries as $entry) {
print $i ." ". $entry->title->text . "\n";
$i++;
}
}
I used print_r()
on the array put it was just a mess of variables. I can't find any information on this. I also use the query function to limit my data and that throws errors. Anyone got any ideas?