只向Auth.php中的作者显示信息 时间:2013-03-15 作者:user27309 我需要能够在前端查看的个人资料中仅向作者显示一些信息,对于距离,我需要在头像下添加一个只有作者(如果登录)才能看到的文本。此文本将通知他们,他们可以通过在个人资料页面中添加头像来随时更改头像。。。我还可以添加更多细节。。。有没有办法做到这一点?谢谢 2 个回复 最合适的回答,由SO网友:user27309 整理而成 这个适合我。。。 <?php global $current_user;<br> get_currentuserinfo(); if (is_user_logged_in() && (current_user_can(\'edit_others_posts\') || $current_user->ID == $post->post_author) ) {my text goes here\'); } ?> SO网友:David Gard 您可以检查当前用户是谁,以及他们是否与正在查看的用户具有相同的ID。global $current_user wp_get_current_user(); if(the_author_meta(\'ID\') === $current_user->ID) : // Add your code here... endif; 有关更多信息,请参阅这些Codex页面-wp_get_current_user()the_author_meta() 结束 文章导航