作者和类别档案的分页无法正常工作

发布于 2024-10-14 04:41:39 字数 2008 浏览 2 评论 0原文

我制作了一个底部有分页的类别页面。每次我尝试转到第 2 页时,URL 结构都会发生变化,但循环中的帖子不会发生变化。博客页面的分页工作正常,循环几乎完全相同。有什么提示我可能做错了什么吗?我也在使用 Wp-Paginate 插件。

<ul class="blogpostings">
    <?php if (have_posts()) : ?>

        <?php while (have_posts()) : the_post();?> 
            <li>
            <?php if ( has_post_thumbnail() ):?>
                <?php
                $image_id = get_post_thumbnail_id();
                $image_url = wp_get_attachment_image_src($image_id, 'thumbnail', true);
                echo '<a href="' . get_permalink($post->ID) . '" title="' . get_the_title($post->ID) . '"><img src="' . $image_url[0] . '" title="' . get_the_title($post->ID) . '" alt="' . get_the_title($post->ID) . '" /></a>';
                ?>
            <?php endif; ?>
                <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2><br/>
                <h3><?php the_author_posts_link(); ?>  <span class="date">| <?php the_time('F d, Y') ?> |</span>  <?php comments_popup_link('Post Comment', '1 Comment &#187;', '% Comments &#187;'); ?> 
                <fb:like href="<?php the_permalink() ?>" layout="button_count" width="100" font="lucida grande"></fb:like>
                </h3>
                    <?php the_excerpt(); ?>
                    <p class="postreadmore"><a href="<?php the_permalink() ?>" class="arrow"> Read More </a></p>
            </li>
        <?php endwhile; ?>
            </ul>
        <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>

            <?php if(function_exists('wp_paginate')) {
                wp_paginate();
            } ?>

        <?php } ?>
        <?php endif; ?>
        </div>

I've made a category page that has pagination on the bottom of it. Everytime i try to go to page 2, the URL structure changes but the posts from my loop do not. The pagination is working fine for the blog page with almost the exact same loop. Any hints to what I could be doing wrong? I am also using the Wp-Paginate plug in.

<ul class="blogpostings">
    <?php if (have_posts()) : ?>

        <?php while (have_posts()) : the_post();?> 
            <li>
            <?php if ( has_post_thumbnail() ):?>
                <?php
                $image_id = get_post_thumbnail_id();
                $image_url = wp_get_attachment_image_src($image_id, 'thumbnail', true);
                echo '<a href="' . get_permalink($post->ID) . '" title="' . get_the_title($post->ID) . '"><img src="' . $image_url[0] . '" title="' . get_the_title($post->ID) . '" alt="' . get_the_title($post->ID) . '" /></a>';
                ?>
            <?php endif; ?>
                <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2><br/>
                <h3><?php the_author_posts_link(); ?>  <span class="date">| <?php the_time('F d, Y') ?> |</span>  <?php comments_popup_link('Post Comment', '1 Comment »', '% Comments »'); ?> 
                <fb:like href="<?php the_permalink() ?>" layout="button_count" width="100" font="lucida grande"></fb:like>
                </h3>
                    <?php the_excerpt(); ?>
                    <p class="postreadmore"><a href="<?php the_permalink() ?>" class="arrow"> Read More </a></p>
            </li>
        <?php endwhile; ?>
            </ul>
        <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>

            <?php if(function_exists('wp_paginate')) {
                wp_paginate();
            } ?>

        <?php } ?>
        <?php endif; ?>
        </div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半枫 2024-10-21 04:41:39

如果您使用 query_posts(),请确保包含 paged 参数。以下内容应该有所帮助: http://ivanasetiawan.com/wp-pagination -停留在同一页面/

If you are using query_posts(), make sure you are including the paged parameter. The following should help: http://ivanasetiawan.com/wp-pagination-stays-on-the-same-page/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文