';
$content.= '
';
$content.= "- ".get_avatar( get_the_author_meta('email') , 30 )."
";
$content.= "- ".get_the_author_meta('display_name')."
";
// Facebook Icon
$fempty = get_the_author_meta('facebook');
if (!$fempty== "") {
$content.= "
- Facebook
";
}
$tempty = get_the_author_meta('google');
if (!$tempty == "") {
// Google Icon
$content.=
"- Google
";
}
$tempty = get_the_author_meta('twitter');
if (!$tempty == "") {
// Twitter Icon
$content.=
"";
}
// Date & Time
$content.= "- ".get_the_date(__(F))."-".get_the_date(__(j)).", ".get_the_date(__(Y))." | ".get_the_date(__(g)).":".get_the_date(__(i)).":".get_the_date(__(s))." ".get_the_date(__(A))."
";
$content.= '
';
}
return $content;
}
?>