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 主题中手动实现了 NivoSlider。一切都很好,现在我需要从我的 index.php 文件中隐藏 div#NivoSlider ,这样滑块只会显示短代码选项。在其他页面或小部件中。
有什么帮助吗?提前致谢。
您可以将 Nivoslider 代码放在自定义 HTML 小部件中,并在您想要调用的地方调用小部件,例如 .... 仅在主页或您想要的任何地方,或者您可以将代码置于特定条件下,如 is_frontpage() 或 is_page('关于')。
<?php if(is_front_page()) { ?> <div id="nivo-slider"> slider code </div> <?php } else { ?> <div id-"normal"> </div> <?php } ?>