嘿伙计们,我一直在改变我购买的剧本中的一些东西。
除主页外,侧边栏隐藏在任何地方。我想要做的是它也会在searchresults页面上显示等。
这是我的侧边栏php文件中的代码:
<div id="sidebar" class="<?php if(com() !== "home") {echo 'hide';} ?> animated zoomInLeft">
我试过这个,但我猜我做错了什么:(
<div id="sidebar" class="<?php if(com() !== "home" || "searchresults") {echo 'hide';} ?> animated zoomInLeft">
有人可以帮助我,我还在学习,你的帮助将非常感激! &LT; 3 此外,如果我尝试添加1个以上的页面,例如搜索结果,视频。
答案 0 :(得分:1)
&#34; SearchResult所&#34; =&GT;永远回声&#34;隐藏&#34; 试试这个
<div id="sidebar" class="<?php if(!(in_array(com(),array("home","searchresults")))) {echo 'hide';} ?> animated zoomInLeft">
或
<div id="sidebar" class="<?php if((com() !== "home") || (com() !== "searchresults")) {echo 'hide';} ?> animated zoomInLeft">