摘要:以轻cms定位的wordpess似乎一直对用户功能没有做太多的功能实现和介绍,或是最基础的用户级别可以限制还是有的,可通…
以轻cms定位的wordpess似乎一直对用户功能没有做太多的功能实现和介绍,或是最基础的用户级别可以限制还是有的,可通过下面代码实现对应用户等级的可见内容设置。
WordPress 用户等級
管理员:Administrator: level 10
编辑:Editor: Level 7
作者:Author: Level 4
投稿者:Contributor: Level 2
订阅者:Subscriber: Level 0
访客: Level 在 0 以下
仅管理員可见
1
2
3
4
5
|
<?php global $user_ID; if( $user_ID ) : ?>
<?php if( current_user_can(‘level_10’) ) : ?>
管理员可见的内容
<?php endif; ?>
<?php endif; ?>
|
按照用户等級显示不同的內容
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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://www.wazhuti.com/461.html