是否在Auth.php中获取没有发布帖子的作者元数据?

时间:2014-11-23 作者:NewUser

不幸的是,以下代码only echo 如果作者至少有one 已发布帖子:(

<?php the_author_meta(\'description\'); ?>

<?php the_author_posts(); ?>

<?php printf( esc_attr__( \'Twitter Pro\'), get_the_author() ); ?>
是吗possible 检索作者元数据的步骤author.php 作者何时发布了0篇文章?

1 个回复
SO网友:Mohammad Mursaleen

而不是尝试使用;

<?php get_userdata( $userid ); ?> 
例如:;

<?php 
  $user_info = get_userdata(1);    // get info for user id \'1\'
  $username = $user_info->user_login;
  $first_name = $user_info->first_name;
  $last_name = $user_info->last_name;
?>
有关更多详细信息,请访问this link.

结束

相关推荐

The Loop in Static Page

我对环路有一些问题。我以“Twenty14”主题为例。我正在使用基本循环创建2个php文件。一个是家。其中一个是名为示例页的模板页。php。两者都包含此代码;if( have_posts() ) : while( have_posts() ) : the_post(); the_content; endwhile; endif; 没什么特别的,唯一的区别是我在示例页面上有模板声明。php/** * Template Nam