在这里,我有一个自己的模板,其中的侧边栏看起来与其他模板不同:侧边栏位于主内容的右下方,而不是旁边。我的代码:
<div id="sidebar"><?php echo get_sidebar()?></div>我知道这是CSS,但您能帮助如何构造index.php和页面段式the,使其对所有页面都有相同的设计。
发布于 2013-12-23 10:18:34
我见过你的Html结构,你需要这样改变结构..
按照这个结构为您自己的模板文件..。
<div id="wrapper">
<div id="header">
<!-- Here goes the header part -->
</div>
<div id="main">
<!-- Here goes the main content part -->
</div>
<div id="sidebar">
<!-- Here goes the sidebar part -->
</div>
</div>https://wordpress.stackexchange.com/questions/127426
复制相似问题