相关链接:http://themeforward.com/demo2/2011/01/17/testing-comments/
我已经玩了大约10分钟,试图让侧边栏正确对齐,但我弄不清楚。
我把我的评论放在一个新的分区中,将它们与帖子分开。通常我不会这样做,但我希望设计师在开始使用此主题进行构建时,能够拥有完整的CSS控制,而无需添加新类。
Anyway, my sidebar ends up being aligned with my comments rather than the content on my page.
在这里,将div移到endif下不是一个选项,因为如果需要的话,我希望能够自己设计帖子的样式。将评论放在侧边栏下方会使评论消失!
我的代码如下所示:
<?php get_header(); ?>
<div id="container">
<div id="post_content">
<div class="clear">
<!-- Grab posts -->
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<!-- Post title -->
<h1><?php the_title(); ?></h1>
<div class="sub-title-post">
<?php the_time(\'F j, Y\'); ?> by <?php the_author_posts_link( ); ?>, under <?php the_category(\', \') ?>
</div>
<!-- The post -->
<?php the_content(); ?>
<?php edit_post_link(\'Edit\', \'<p>\', \'</p>\'); ?>
<!-- Tags -->
<h3 class="tags"><?php the_tags(\'Tags \',\' / \',\'<br />\'); ?></h3>
<h3 class="tags"><?php $turl = getTinyUrl(get_permalink($post->ID));
echo \'Short URL <a href="\'.$turl.\'">\'.$turl.\'</a>\' ?></h3>
<!-- Next/Previous Posts -->
<div class="mp_archive2">
<div id="more_posts">
<div class="oe"><?php previous_post_link(\'%link\', \'-\', TRUE); ?></div>
<div class="re"><?php next_post_link(\'%link\', \'+\', TRUE); ?></div>
</div>
</div>
</div>
<?php endwhile; else: ?>
<p>No matching entries found.</p>
<?php endif; ?>
</div>
<?php comments_template(); ?>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>