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; ?-->