标签: wordpress wordpress-theming
我正在创建Wordpress主题,但我无法获取当前用户名。我试过 get_currentuserinfo(),但似乎不起作用。是否有任何工作函数可以获取我可以在 header.php模板文件中使用的用户名?
答案 0 :(得分:13)
您是否阅读过documentation,此示例适用于我:
<?php global $current_user; get_currentuserinfo(); echo $current_user->user_login; ?>