I'm having trouble getting information with the Blogger PHP API, can you help?

joel C

New member
I have a working version of the Zend framework set up, and I'm pulling down a list of posts from the clients blog.

I'm using a 'for' loop to run through the list of posts.

I can get at the title for of the post like this:
$title = $entry->title->text;
I can also get at the content of the post like this:
$entry->getContent()->getText();

I want to be able to get the date, and a link to that particular post, but I'm having a great deal of difficulty figuring out how to get to the data.

Please advise.
 
Back
Top