摘要:wordpress网站程序默认情况下是不会显示用户的注册时间的,那我们如何需要显示用户登陆时间的功能,可以通过下面的代码…
wordpress网站程序默认情况下是不会显示用户的注册时间的,那我们如何需要显示用户登陆时间的功能,可以通过下面的代码来实现。
将下面代码添加到当前wordpress主题的functions.php文件中:
1
2
3
4
5
6
7
|
function user_registered_date(){
$userinfo=get_userdata(get_current_user_id());
$authorID= $userinfo->id;
$user = get_userdata( $authorID );
$registered = $user->user_registered;
echo ‘注册时间’ . date( ‘Y年m月d日’, strtotime( $registered ) );
}
|
在前台调用以下代码函数,放在需要的模块位置即可
1
2
3
|
//在主题模板适当位置添加代码:
<?php if ( is_user_logged_in() ) { user_registered_date();} ?>
//只有登录用户可见。
|
来源:http://www.wazhuti.com/2445.html