可以我看了一下你的网站。你似乎在使用类别来显示婚礼、肖像、活动和博客。我假设您不希望这些类别的其他帖子出现在您的博客中。因此,使用类别是适当的。
我会这样做的。
1. 复制页面。php模板,并将其重命名为category-(插入类别id)。php。根据您的站点,我确定您的博客类别id为4。因此,第4类。php。
我们不复制存档的原因。主题中的php是因为博客格式还不存在。通过使用page。php我们保留主页和右侧栏的布局。
注意:签出this page in wordpress codex, 对于类别模板。
2. 打开类别4。php在您选择的编辑器中(我使用Editra)。用以下代码替换div id“content”中的所有内容。然后测试您的站点,看看它是否正常工作。如果它确实起作用,请进行css样式设置。在下一步中,我将向您展示添加编号分页的代码。
<!-- Start the Loop. -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!-- The following tests if the current post is in category 4. -->
<!-- If it is, the div box is given the CSS class "post-cat-four". -->
<!-- Otherwise, the div box will be given the CSS class "post". -->
<? php if ( in_category(\'4\') ) { ?>
<div class="post-cat-four"> <?php } else { ?>
<div class="post"> <?php } ?>
<!-- Display the Title as a link to the Post\'s permalink. -->
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent
Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<!-- Display the date (November 16th, 2009 format) and a link to other posts
by this posts author. -->
<small><?php the_time(\'F jS, Y\') ?> by <?php the_author_posts_link() ?></small>
<!-- Display the Post\'s Content in a div box. -->
<div class="entry"> <?php the_content(); ?> </div>
<!-- Display a comma separated list of the Post\'s Categories. -->
<p class="postmetadata">Posted in <?php the_category(\', \'); ?></p>
</div> <!-- closes the first div box -->
<!-- Stop The Loop (but note the "else:" - see next line). --> <?php endwhile; else: ?>
<!-- The very first "if" tested to see if there were any Posts to -->
<!-- display. This "else" part tells what do if there weren\'t any. -->
<p>Sorry, no posts matched your criteria.</p>
<!-- REALLY stop The Loop. --> <?php endif; ?>
注:以上代码来自wordpress codex,我已经将其调整为您的类别“博客”。
3. 使用以下命令在循环后添加分页pagination tutorial by WP tut. 我提取了代码以便于参考。
<?php global $wp_query;
$total_pages = $wp_query->max_num_pages;
if ($total_pages > 1){
$current_page = max(1, get_query_var(\'paged\'));
echo paginate_links(array(
\'base\' => get_pagenum_link(1) . \'%_%\',
\'format\' => \'/page/%#%\',
\'current\' => $current_page,
\'total\' => $total_pages,
));
} ?>
您可以使用教程中提供的css代码设置分页链接的样式。
请注意,我没有测试代码。我希望这有帮助。