我想执行一个 css 样式,但只针对特定的 Joomla 用户组。我的目标是将 php 代码直接包含在我的 Joomla 模板中。
我试图找到如何做(我不是编码员)并且我做了一些测试但没有成功。例如,我在论坛中找到了这段代码:
<?php
$user =& JFactory::getUser();
if (!$user->author) {
?>
<style>#myclass{display:none; width:0px;}</style>
<?php
}
?>
但这不起作用,因为我想通过用户组 ID 执行样式,还因为这段代码似乎适用于 Joomla 1.5 而我在 Joomla 2.5 下。
请问有什么线索吗?