在Wordpress中编辑“侧边栏”

时间:2016-06-10 09:29:39

标签: php html wordpress

我的wordpress页面上出现了一些问题,因为小部件没有显示,但我不确定如何编辑小部件。

外观>编辑器下的homepage.php上的代码是

<section class="row post_content">

  <div class="col-sm-8">

    <?php the_content(); ?>

  </div>

  <?php get_sidebar('sidebar2'); // sidebar 2 ?>

</section> <!-- end article header -->

在哪里可以找到“sidebar2”的代码,因为在侧边栏应该显示的页面上出现错误消息

1 个答案:

答案 0 :(得分:1)

正如get_sidebar()的开发人员手册中所述,您的侧边栏文件应称为sidebar-sidebar2.php。该文件将出现在活动主题的根目录中。

  

get_sidebar()挂钩允许使用特定的侧边栏模板文件代替默认的侧边栏模板文件。如果您的文件名为sidebar-new.php,则可以将钩子中的文件名指定为get_sidebar(&#39; new&#39;)。