我目前正在使用 ExpressionEngine 2.5.5 并且有一个包含多个条件语句的模板...
{if logged_in && member_group == '1' || member_group == '7'}
<div>Content</div>
{/if}
{if logged_in && member_group != '1' || member_group != '7'}
<div class="authNotice">
<p>You are not authorized to view this content.</p>
</div>
{/if}
{if logged_out}
<div class="authNotice">
<p>Please <a href="#">Log In</a> or <a href="#">Register</a>.</p>
</div>
{/if}
即使满足条件,第二条语句也无法正常工作,因为它会显示消息“您无权查看此内容”。
有谁知道将这三个条件组合在一个模板中的最佳实践?