WordPress不同用户等级显示不同的內容 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

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

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: