Hallo Liebe Leser von You Big Blog.
Diese Code Snippet Funktion wird erst interessant wenn gleichzeitig mehreren Autoren Blog betreiben.
Code Snippet holt das Publisher Kontaktinformation für Google plus Konto im Nutzerprofil und verlinkt in den Kopfzeile (header.php) Bereich der Blog Index Seite einen entsprechenden Publisher hinzu.

Vorerst sollte man jedoch WordPress Benutzer Kontaktinfo Felder im Nutzerprofil erweitern.

Snippet Code in der fuctions.php WordPress Thema einfügen:

/**
* Adding the authors Google+ Profile to the
*/
if(!function_exists('my_googleplus_author')) {
function my_googleplus_author() {
global $post;

if(!is_singular()) {
echo '';
} else {
$var_sGooglePlus = get_the_author_meta('googleplus', $post->post_author);

if(empty($var_sGooglePlus)) {
$var_sGooglePlus = 'https://plus.google.com/u/0/111372131988135012941/';
} // END if(empty($var_sGooglePlus))

echo "\n" . '' . "\n";
} // END if(!is_singular())
} // END function my_googleplus_author()

add_action('wp_head', 'my_googleplus_author');
} // END if(!function_exists('my_googleplus_author'))

Wird kein Einzelartikel angezeigt – if(!is_singular()) –wird statt Autor der Publisher (Blogbetreiber) verlinkt.
Sollte dieser leer sein – if(empty($var_sGooglePlus)) – wird hier zur Profilseite des Blogs oder zum Profil des Blogbetreibers verlinkt.