網頁設計技巧,為訪問者和特定角色啟用特定的CSS代碼
點擊數: 1377
在網頁設計
如何為訪問者和特定會員角色啟用特定的CSS代碼
可以使用wp_head掛勾(hook)功能,並檢查您目前的會員角色
在HTML標頭上添加自定義CSS
- add_action('wp_head', 'add_css_of_user_role');
- function add_css_of_user_role()
- {
- /*Check Current User is Login*/
- if ( is_user_logged_in() )
- {
- $user = wp_get_current_user();
- /*Check Current User Role*/
- if (in_array('c_business', $user->roles)) { ?>
- <style>
- 你的css代碼
- </style>
- <?php }
- }
- }
這裡面的c_business,可以換成你的角色代碼。