在wordpress中创建具有1类循环的多个页面

时间:2013-03-01 17:43:24

标签: wordpress loops post categories

我需要为单个类别创建一个循环。 一切正常,因为我无法将页面分成多个部分。

这是我页面的循环。 输出很好,导航栏没有显示,只需添加到url a / page / 2就会显示前2个帖子。

            <?php query_posts('cat=179&posts_per_page=2'); ?>

            <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

            <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

            <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'morlottiTabs' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>


            <div class="entry-meta">
                <?php morlottiTabs_posted_on(); ?>
            </div>

            <div class="entry-content">
                <?php the_content(); ?>
            </div><!-- .entry-content -->

                <div class="entry-utility">
                    <?php morlottiTabs_posted_in(); ?>
                    <?php edit_post_link( __( 'Edit', 'morlottiTabs' ), '<span class="edit-link">', '</span>' ); ?>
                </div><!-- .entry-utility -->
              </div>
            <?php endwhile; endif; ?>

            <?php /* Display navigation to next/previous pages when applicable */ ?>
            <?php if (  $wp_query->max_num_pages > 1 ) : ?>
                            <div id="nav-below" class="navigation">
                                <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'morlottiTabs' ) ); ?></div>
                                <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'morlottiTabs' ) ); ?></div>
                            </div><!-- #nav-below -->

            <?php endif; ?>

1 个答案:

答案 0 :(得分:0)

您可以尝试这样做。还列出了一些其他用于分页的方法。

参考:http://digwp.com/2009/08/wordpress-page-navigation/

参考:http://codex.wordpress.org/Class_Reference/WP_Query


修改

您想尝试不同的方法吗?

Wordpress有自己的分页方法

参考:http://codex.wordpress.org/Function_Reference/paginate_links

<?php echo paginate_links( $args ) ?>