在2016年,仅在主页中显示滑块

时间:2016-11-29 作者:usman

通过使用2616主题,我在header.php 部分结果,滑块位置就是我想要的位置,但它会显示在所有页面上。

如何通过仅在主页上显示滑块来实现这一点?

网站为:http://www.pulaakufm.com/

非常感谢。

1 个回复
SO网友:Self Designs

的内部header.php 文件使用is_home() 检查是否是主页

if ( is_home() ) {
    // Include slider here
}

相关推荐