河北省沧州市运河区人防(人民防空)大厦11层07号
超越信息欢迎您,12年专注国内外网络营销,为您提供全链路服务方案!
超越信息欢迎您,12年专注国内外网络营销,为您提供全链路服务方案!
河北省沧州市运河区人防(人民防空)大厦11层07号
<?php
// 获取当前文章的作者ID
$author_id = get_the_author_ID();
// 如果作者ID存在,获取作者的昵称
if ($author_id) {
$nickname = get_the_author_meta('nickname', $author_id);
// 如果有昵称,则显示它
if ($nickname) {
echo '作者昵称: ' . $nickname;
} else {
echo '作者昵称: ' . get_the_author_meta('display_name', $author_id);
}
}
?>
/*******************************************/
<?php
// 在文章页面获取作者信息
$author_id = get_the_author_meta('ID');
$author_name = get_the_author_meta('display_name');
$author_email = get_the_author_meta('user_email');
// 显示作者名字
echo '作者名字: ' . $author_name;
// 显示作者邮箱(如果你想展示)
echo '作者邮箱: ' . $author_email;
// 如果你想在用户的个人主页链接作者名字
echo '<a href="' . get_author_posts_url($author_id) . '">' . $author_name . '</a>';
?>
留下评论