Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
author.php根据帖子作者的角色,我有一个页面必须看起来不同。如果它的角色是Editor或Admin,则会显示 bios。否则(例如,对于 Author),它不是。但我在任何地方都找不到。我有一个线索可以使用get_userdata,但无法做到。
author.php
get_userdata
谢谢您的帮助!
可以查看$wp_query全局获取作者的角色:
$wp_query
global $wp_query; $roles = $wp_query->queried_object->roles; if( $roles[0] == 'editor' ) { // do stuff }