在WordPress中根据用户角色显示/隐藏内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在WordPress中根据用户角色显示/隐藏内容相关的知识,希望对你有一定的参考价值。
Customize as needed using user roles.
<div><p>You are logged in!</p></div> <?php } ?> <?php if ( current_user_can( 'delete_others_posts' ) ) { //only admins and editors can see this ?> <p>You are an admin</p> <?php } else { ?> <p>You are not an admin</p> <?php } ?>
以上是关于在WordPress中根据用户角色显示/隐藏内容的主要内容,如果未能解决你的问题,请参考以下文章
使用 PHP 在 wordpress 中根据登录用户 = 角色显示内容