我不太熟悉Wordpress的分页,所以我不确定这是否是一个愚蠢的问题。
布局:
代码:
<?php
/**
* Template Name: Pictures Page
* @package WordPress
* @subpackage Prominent
* @since Prominent 1.0
*/
get_header(); ?>
<div id="tagline">
<div class="container">
<?php // Run main loop (The Loop). ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div class="content0">
<?php the_content(); ?>
</div>
<?php endwhile; ?>
</div><!-- .container -->
</div><!-- #content-bottom -->
<div id="content">
<div class="container">
<div id="mainbar">
<?php $custom_posts = new WP_Query(); ?>
<?php $custom_posts->query(\'category_name=Pictures\'); ?>
<?php while ($custom_posts->have_posts()) : $custom_posts->the_post(); ?>
<div class="content-block-2">
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( \'Permalink to %s\', \'twentyten\' ), the_title_attribute( \'echo=0\' ) ); ?>" rel="bookmark"><?php the_content(); ?></a>
</div>
<?php endwhile; ?>
</div><!-- #mainbar -->
<?php get_sidebar(); ?>
</div><!-- .container -->
</div><!-- #content-bottom -->
<?php get_footer(); ?>
不知道如何添加分页,这超出了我的理解。