Aug 02, 2011 Display Google Plus Posts On Your Site
This is a very simple PHP function that will call your most recent public post on Google Plus.
Just copy the code below and replace the numeric string in the 'simplexml_load_file' with yours.

Hint: If you're not sure where your Google+ ID is, just login to your account and view your profile. You'll see it in the url
function gPlus(){
$xml = simplexml_load_file('http://plusfeed.appspot.com/106274972321613013294');
$post = $xml->entry->title;
return $post;
}
Note: If you like to see everything in the xml file, you can output this code to grab the nodes you want. Feel free to tinker with it and return any data in the file.
$xml = simplexml_load_file('http://plusfeed.appspot.com/106274972321613013294');
print_r($xml);
If you have any questions, comments, or anything you would like to add let me know in the comments below.











This would be pretty easy to make a simple WP plugin with, cheers mate :)
awesome dude will this code will be useful using curl as well thanks mate.
we see google+ votes is one of the top social stuff but here is also many site like that gplusvotes.com now its time to see their activities and how much they will satisfy us with their performance. will come here to see your reply, thanks.
Could this be used to only display posts from a Google plus 'page'?