如何在不在WordPress中创建页面的情况下使WordPress的主页显示我的自定义index.html页面而不是默认页面,并保留其余帖子保持不变。
答案 0 :(得分:0)
您可以通过修改index.php文件将index.html显示为主页。
只需使用,
if(is_home() || is_front_page()){
// your index.html code
}
else{
// default index.php code
}
我假设你正在使用twnetyseventeen主题。