按用户角色显示或隐藏自定义字段[前端]

时间:2016-04-03 作者:ethnictune

是否可以按用户角色隐藏或显示自定义字段。

例如:我有自定义字段“wholesale\\u notice”,它必须仅对我的“wholesale”用户角色可见。

谢谢

1 个回复
最合适的回答,由SO网友:Arpita Hunka 整理而成

可以,可以按用户角色隐藏或显示自定义字段。使用current\\u user\\u can()查找当前用户角色。如果当前用户具有功能或角色,则此函数返回true。例如,您当前的用户是“批发”,您可以这样使用:

<?php if( current_user_can(\'wholesale\')) {  ?> 
    // stuff here for wholesale
<?php } ?>
有关更多参考信息,请检查以下内容:https://codex.wordpress.org/Function_Reference/current_user_can

相关推荐

如何让`wp-list-table`显示我在Custom-Post中的`Custom-Fields`

一切都好吗<我需要wp-list-table 也要显示custom-fields 在每个custom-post 我有,但我不知道如何做到这一点,在这幅图中,它显示了带有字段的表格:Title, Author and Publication Date: 我想要的是能够选择custom-fields 将出现,例如以下示例Title, Carta, Naipe, Author, and Date of Publication: