WordPress按用户等級显示不同的內容

WordPress的用户机制在整体运作上似乎不是太重要的角色,如果前台针对不同等级的用户显示不同的页面或是内容…

WordPress的用户机制在整体运作上似乎不是太重要的角色,如果前台针对不同等级的用户显示不同的页面或是内容,可用下面判断会员等级的语法,加以控制。。

WordPress按用户等級显示不同的內容

WordPress 用户等級

  • 管理员:Administrator: level 10
  • 编辑:Editor: Level 7
  • 作者:Author: Level 4
  • 投稿者:Contributor: Level 2
  • 订阅者:Subscriber: Level 0
  • 访客: Level 在 0 以下

仅管理員可见

  1. <?php global $user_IDif$user_ID ) : ?>
  2. <?php if( current_user_can(‘level_10’) ) : ?>
  3. 管理员可见的内容
  4. <?php endif; ?>
  5. <?php endif; ?>

按照用户等級显示不同的內容

  1. <?php if (current_user_can(‘level_10’)) : ?>
  2. 管理員可见内容
  3. <?php elseif (current_user_can(‘level_7’)) : ?>
  4. 編輯可见内容
  5. <?php elseif (current_user_can(‘level_4’)) : ?>
  6. 作者可见内容
  7. <?php elseif (current_user_can(‘level_2’)) : ->
  8. 投稿者可见内容
  9. <?php elseif (current_user_can(‘level_0’)) : ?>
  10. 订阅者可见内容
  11. <?php else : ?–>
  12. 一般访客可见内容
  13. <?php endif; ?–>

原文:http://sofree.tw/current_user_can/

类别:WordPress入门

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册