在WordPress中根据用户角色显示/隐藏内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在WordPress中根据用户角色显示/隐藏内容相关的知识,希望对你有一定的参考价值。

Customize as needed using user roles.
  1. <?php if (is_user_logged_in() ) { //only logged in user can see this ?>
  2. <div><p>You are logged in!</p></div>
  3. <?php } ?>
  4.  
  5. <?php if ( current_user_can( 'delete_others_posts' ) ) { //only admins and editors can see this ?>
  6. <p>You are an admin</p>
  7. <?php } else { ?>
  8. <p>You are not an admin</p>
  9. <?php } ?>

以上是关于在WordPress中根据用户角色显示/隐藏内容的主要内容,如果未能解决你的问题,请参考以下文章

使用 PHP 在 wordpress 中根据登录用户 = 角色显示内容

WordPress登录框显示/隐藏输入的密码

根据用户角色获取登录用户的django权限以显示/隐藏菜单

如何根据用户角色Angular 4显示/隐藏元素

Wordpress 如何根据每个页面上的用户角色应用特定的 CSS 属性

Wordpress - 隐藏管理员中的所有页面,除了一个