内容纲要
问题现象
在文档界面的右边存在大量空白,并且左边的内容空间太小
解决方法
在footer.php的最后一行加入如下代码即可
<script>
if(window.location.href.match('/index.php/docs/')){
jQuery("#primary").css("max-width", "100%")
}else{
jQuery("#primary").css("max-width", "")
}</script>
zakra主题需要如下修改:
<script>
if(window.location.href.match('/index.php/docs/')){
jQuery("#primary").css("width", "100%")
}else{
jQuery("#primary").css("width", "70%")
}</script>
解决wordpress文档界面显示宽度窄