Display latest Google+ update in WordPress

Google+ (Google Plus) is gaining popularity. It is also important because Google Plus also has the ability to influence Google search results. Do you want to show your latest Google+ updates on your WordPress blog or website? Just include the following code in any template file (such as header.php, single.php, sidebar.php or footer.php) to display the latest updates from your Google+ account. Make sure that you replace the ‘123456789’ with your own Google+ ID.

	include_once(ABSPATH.WPINC.'/rss.php');
	$googleplus = fetch_feed("http://plusfeed.appspot.com/123456789"); // Replace 123456789 with your own Google  Plus ID
	echo '<a href="';
	echo $googleplus->items[0]['link']; echo '">';
	echo $googleplus->items[0]['summary'];
	echo '';

Source: Geekeries.fr