问题重现:
是这样的,安装了主题模板之后,发现在首页、分类目录页和文章页面都能显示右边的侧边栏,唯独“关于”页面不显示
我想做的,就是在“关于”的右侧也添加“边栏”的显示
解决思路:
思考了一下发现“关于”是一个独立的页面,所以问题在“page.php”里面
参考了一下首页(index.php)和文章(single.php),很容易便解决了
解决方法:
1,编辑侧边栏(sidebar.php)
2,在<?php get_header(); ?>
下面添加
<div id="main">
在<?php endwhile; ?>
上面添加
</div>
3,在<?php get_footer(); ?>
上面添加<?php get_sidebar(); ?>
我的修改后的完整的sidebar.php如下,供参考
<?php get_header(); ?>
<div id="main">
<?php while ( have_posts() ) : the_post(); ?>
<div <?php post_class() ?>>
<span class="icon icon_aside" title="日志"></span>
<header id="post_header">
<h1><?php the_title(); ?></h1>
</header>
<article id="post_content">
<?php the_content(); ?>
<?php wp_link_pages(); ?>
</article>
</div>
</div>
<?php endwhile; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>