网页设计技巧,为访问者和特定角色启用特定的CSS代码
点击数: 1351
在网页设计
如何为访问者和特定会员角色启用特定的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)) { ?>
- }
- }
这里面的c_business,可以换成你的角色代码。