Google Plus One script has quit working, now returns red flag

Google +1 is very easy to add to your site, you only need 2 things for a basic button. 1. Google’s JavaScript, make sure its is https not http! `<script type=”text/javascript” src=”https://apis.google.com/js/plusone.js”></script>` To add this to your site in your functions.php you can write, function google_plus_gp() { wp_register_script( ‘google-plus’, ‘https://apis.google.com/js/plusone.js’); wp_enqueue_script(‘google-plus’) } add_action (‘wp_enqueue_scripts’,’google_plus_gp’); 2. … Read more

Does a Google + RSS Plugin Exist?

Here is a plugin to display your Google+ feed in a widget: http://wordpress.org/extend/plugins/google-wordpress-widgets/ However, the reverse, of posting from WordPress to a Google+ profile/page is not possible, as the necessary API calls aren’t available in Google+. One can read from a profile/page but not write.

Add Google+ Badge to Posts – Specific to Author

Grab Meta Data Use get_user_meta() for that. The key is ‘galink_profile’. echo get_user_meta( ‘galink_profile’, ‘put the user ID here’, true ); Another option is to get it from the author meta data get_the_author_meta() if you’re displaying an author page/archive: echo get_the_author_meta( ‘galink_profile’, ‘put the user ID here’ ); Get user IDs You can grab the … Read more

how to show Author information in search results

It’s called Author Rich Snippets. Your link needs to look like <link href=”https://plus.google.com/115911773396772351667?rel=author”/>Your Name</a> The Simple Way To Set Up Author Rich Snippets There are a few things you need in order to step up Author Rich Snippets: A public Google+ profile. Make sure to upload a decent looking profile picture. Google will use this … Read more

Simple plugins to post info about new blog entries?

For Facebook: http://wordpress.org/extend/plugins/simple-facebook-connect/ For Twitter: http://wordpress.org/extend/plugins/simple-twitter-connect/ For Google+ http://wordpress.org/extend/plugins/simple-google-connect/ The twitter and facebook plugins will autopost from your site to each service. The G+ plugin is new, and still under development. I don’t know that there is any plugin yet that pushes notifications to G+….