Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我现在在我的 wordpress 主题中使用小部件逻辑插件。我想在不同的小部件中使用一个小部件。例如,我不想在主页和“关于”内页中使用小部件。所以我写了以下内容来禁用这些页面中的小部件。
!is_front_page() || !is_page('about')
但我无法通过代码得到结果。我的代码是否有任何问题,或者是否有任何其他方法可以在特定页面中获取小部件。
小部件是否使用小部件逻辑代码启用。请帮助我得到结果。
是的,不应该是||应该的&&——你所做的总是会被认为是真的。
||
&&