再次更换Blog风格
今天上了3节无聊的公选课后,回到寝室又琢磨起更改皮肤的想法,突然发现一个以讨论IT和WP为主题的博客有搜罗相关Themes,逐个看Demo发现了现在使用的这款,不过原来的皮肤所呈现的非常少,对照原主题增加了新的东西,使得右边看起来更加丰满。
但Page页里的右边不知道为什么不能显示
< php get_sidebar(); > 增加这一句还是不行,谁知道怎么解决?
原文件如下:
< php get_header(); >
<div id="content">
<div id="body-container">
<div id="latest-entry">
< php if (have_posts()) : the_post(); update_post_caches($posts); >
<div class="dialog">
<div class="post">
<div class="title">
<h2>< php the_title(); ></h2>
<div class="clear"></div>
</div>
<div class="categories">
<span class="date">< php edit_post_link('Edit', '', ''); ></span>
<div class="clear"></div>
</div>
<div class="content">
< php the_content('Continues after the jump »'); >
</div>
</div>
</div>
< php else : >
<h2 class="center">Not Found</h2>
<p class="center">Your search returned no results. <a href="< php echo get_settings('home'); >">Return to the homepage</a> or try a different search.</p>
< php endif; >
< php comments_template(); >
</div>
< php get_sidebar(); >
<div class="clear"></div>
<div id="container-bottom">
<div class="postnav">
<span class="alignleft floatleft">< php next_posts_link('« Older Entries') ></span>
<span class="alignright floatright">< php previous_posts_link('Newer Entries »') ></span>
<div class="clear"></div>
</div>
<div class="anchor">
<span><a href="javascript:goTop();" mce_href="javascript:goTop();">Top</a></span>
</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
< php get_footer(); >