我相信您所说的是侧边栏中包含的三个默认小部件。php模板。我只是简单地复制侧边栏。然后手动删除这些小部件。
删除这些小部件后,侧栏中只剩下以下代码。php
<?php
/**
* The Sidebar containing the main widget areas.
*
* @package GovPress
*/
?>
<div id="secondary" class="widget-area" role="complementary">
<?php do_action( \'before_sidebar\' ); ?>
<?php if ( ! dynamic_sidebar( \'primary\' ) ) : ?>
<?php endif; // end sidebar widget area ?>
</div><!-- #secondary -->
EDIT 1
为了您的内容,您可以在childtheme中执行以下操作
.content-area {
float: left;
margin: 0 0 0 0;
width: 100%;
}
.col-width {
max-width: 1160px;
padding: 0 20px;
margin: 0 auto;
}
.site-main {
margin: 0 0 0 0;
min-height: 100%;
}
.full-width .site-main {
margin: 0;
}
#secondary {
float: right;
overflow: hidden;
width: 0;
}
.site-footer {
clear: both;
width: 100%;
}
EDIT 2
这是我能找到的唯一其他解决您问题的代码。我已经修改了它,所以请将其粘贴到您的样式中。css
.layout-sidebar-left .site-main {
margin: 0 0 0 0;
}
.layout-sidebar-left #secondary {
float: left;
}
.layout-sidebar-left .content-area {
float: right;
margin: 0 0 0 0;
}