帖子列表的页面导航

时间:2013-06-22 作者:Jusherb

在得到鬼吐司的帮助后。。。我几乎看到了这个问题的曙光。使用这段代码,我可以查询post show。然而,我无法找出如何将其编码为与导航一起使用。谢谢鬼魂!

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

    <div class="post" id="post-<?php the_ID(); ?>">
        <p class="post-date">
            <span class="date-day"><?php the_time(\'j\') ?></span>
            <span class="date-month"><?php the_time(\'M\') ?></span>
        </p>
        <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>

        <div class="entry">
            <?php the_excerpt(); ?>

 </div>
   <p class="metadata">Posted by <?php the_author() ?>.<?php edit_post_link(\'Edit\', \' |     
\', \'\'); ?></p>
    </div>


<?php endwhile; endif; ?>

      <?php
global $wp_query;

$query = new WP_Query( \'cat=1\' );

 $big = 999999999; // need an unlikely integer

 echo paginate_links( array(
\'base\' => str_replace( $big, \'%#%\', esc_url( get_pagenum_link( $big ) ) ),
\'format\' => \'?paged=%#%\',
\'current\' => max( 1, get_query_var(\'paged\') ),
\'total\' => $wp_query->max_num_pages
) );
?>

1 个回复
SO网友:GhostToast

不确定你在那里运行的所有其他自定义内容。但看起来您已经学习了一些教程,可能会将它们混合在一起。我认为像这样简单的事情可能对你有用,然后你可以添加一些提示或稍后尝试页面导航。这将为您提供常规的旧的上一个和下一个链接,您表示这些链接将满足您目前的需要:

<?php 
if(have_posts()):
    while (have_posts()) : the_post();
    ?>
        <article id="post-<?php the_ID(); ?>" class="blog-object">
            <h2 class="blog-title">
                <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
            </h2>

            <div class="blog-entry-meta">
                <small><?php the_time(\'F jS, Y\'); ?></small>
            </div>
            <?php the_content();?>
        </article>
    <?php 
    endwhile;
endif;
?>
<div class="navigation">
    <span class="older"><?php next_posts_link(\'« Older\') ?></span>
    <span class="newer"><?php previous_posts_link(\'Newer »\') ?></span> 
</div><!-- .navigation -->
您可以随意修改它来容纳您想要的其他元素,例如author meta。

结束

相关推荐

对外部PHP脚本中GET_POSTS返回的帖子进行计数

我使用外部PHP脚本中的WP,包括wp-load.php 文件到目前为止,所有功能和一切都按预期工作,除了一件事:我无法获得$wp_query->found_posts 在我用get_posts() 作用有什么提示我应该用什么来代替吗?谢谢