Google Blogger Integration

loydbennie

New Member
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.\[code\]function printFeed($feed){ $i = 0; foreach($feed->entries as $entry) { print $i ." ". $entry->title->text . "\n"; $i++; }}\[/code\]I used \[code\]print_r()\[/code\] 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?
 
Back
Top