抱歉,如果我听起来有点天真。我是一个体面的 PHP 开发人员,最近一直在尝试学习 wordpress。谁能告诉我或指向一个教程,告诉我在带有分页的自定义模板上显示帖子的最佳方式?
问问题
3521 次
1 回答
0
因为偶尔(或者大多数时候,我不确定)你可能会遇到永久链接冲突,因此如果你只是进行自定义query_posts()
然后添加一个分页,并带有指向、、、的链接,page-slug/page/2
我通常会设置分页作为参数。page-slug/page/3
page-slug/page/n
$_GET
这是一个示例代码:
<?php
/*
Template Name: Custom Loop Template
*/
get_header();
// Set up the paged variable
$paged = ( isset( $_GET['pg'] ) && intval( $_GET['pg'] ) > 0 )? intval( $_GET['pg'] ) : 1;
query_posts( array( 'post_type' => 'post', 'paged' => $paged, 'posts_per_page' => 1 ) );
?>
<?php if ( have_posts() ) : ?>
<?php while( have_posts() ) : the_post(); ?>
<div id="post-<?php echo $post->ID; ?>" <?php post_class(); ?>>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="post-excerpt">
<?php the_excerpt(); ?>
</div>
</div>
<?php endwhile; ?>
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div class="pagination">
<?php for ( $i = 1; $i <= $wp_query->max_num_pages; $i ++ ) {
$link = $i == 1 ? remove_query_arg( 'pg' ) : add_query_arg( 'pg', $i );
echo '<a href="' . $link . '"' . ( $i == $paged ? ' class="active"' : '' ) . '>' . $i . '</a>';
} ?>
</div>
<?php endif ?>
<?php else : ?>
<div class="404 not-found">
<h3>Not Found</h3>
<div class="post-excerpt">
<p>Sorry, but there are no more posts here... Please try going back to the <a href="<?php echo remove_query_arg( 'pg' ); ?>">main page</a></p>
</div>
</div>
<?php endif;
// Make sure the default query stays intact
wp_reset_query();
get_footer();
?>
这将创建一个自定义页面模板,称为Custom Loop Template
并将显示最新帖子,每页 1 个。它将在底部有一个基本分页,从 1 到该查询的最大页数。
当然,这只是一个非常基本的示例,但应该足以让您弄清楚其余部分。
于 2012-11-15T11:33:31.457 回答