如何使用php根据用户角色更改WordPress管理页面的背景颜色?

我想根据用户角色更改 WordPress 菜单的背景颜色。除了管理员之外的每个人都应该将整个背景设为黄色。

我想选择管理员级别以下的每个人都有黄色背景。

http://img2.mukewang.com/6129e38600016a4606031308.jpg

蝴蝶不菲
浏览 128回答 1
1回答

GCT1015

您可以admin_head在管理页面中挂钩并添加自定义 CSS。如果 Admin 然后函数将保释并且不会添加任何 CSS。函数current_user_can()可用于检查能力。请检查以下示例。add_action( 'admin_head', 'wpso_add_admin_custom_css' );function wpso_add_admin_custom_css() {&nbsp; &nbsp; // Bail if Admin.&nbsp; &nbsp; if ( current_user_can( 'manage_options' ) ) {&nbsp; &nbsp; &nbsp; &nbsp; return;&nbsp; &nbsp; }&nbsp; &nbsp; ?>&nbsp; &nbsp; <style>&nbsp; &nbsp; &nbsp; &nbsp; body {background-color: #DED51F; }&nbsp; &nbsp; </style>&nbsp; &nbsp; <?php}
打开App,查看更多内容
随时随地看视频慕课网APP