WordPress按用户等級显示不同的內容
WordPress的用户机制在整体运作上似乎不是太重要的角色,如果前台针对不同等级的用户显示不同的页面或是内容…
WordPress的用户机制在整体运作上似乎不是太重要的角色,如果前台针对不同等级的用户显示不同的页面或是内容,可用下面判断会员等级的语法,加以控制。。
WordPress 用户等級
- 管理员:Administrator: level 10
- 编辑:Editor: Level 7
- 作者:Author: Level 4
- 投稿者:Contributor: Level 2
- 订阅者:Subscriber: Level 0
- 访客: Level 在 0 以下
仅管理員可见
- <?php global $user_ID; if( $user_ID ) : ?>
- <?php if( current_user_can(‘level_10’) ) : ?>
- 管理员可见的内容
- <?php endif; ?>
- <?php endif; ?>
按照用户等級显示不同的內容
- <?php if (current_user_can(‘level_10’)) : ?>
- 管理員可见内容
- <?php elseif (current_user_can(‘level_7’)) : ?>
- 編輯可见内容
- <?php elseif (current_user_can(‘level_4’)) : ?>
- 作者可见内容
- <?php elseif (current_user_can(‘level_2’)) : ->
- 投稿者可见内容
- <?php elseif (current_user_can(‘level_0’)) : ?>
- 订阅者可见内容
- <?php else : ?–>
- 一般访客可见内容
- <?php endif; ?–>
原文:http://sofree.tw/current_user_can/
类别:WordPress入门、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!