我是WordPress的新手。我刚刚创建了我的个人博客。边栏小部件出现在除主页外的所有页面中。我意识到我必须手动添加一些代码home-page.php
在主页上显示,但我不知道怎么做。请帮忙。这是我的密码home-page.php
.
<?php
/* Template Name: Home */
get_header();
get_template_part(\'home\',\'slider\');
$awada_theme_options = awada_theme_options();
foreach($awada_theme_options[\'home_sections\'] as $section){
get_template_part(\'home\',$section);
}
get_footer(); ?>
提前非常感谢。