私はまともな PHP 開発者で、最近ワードプレスを学ぼうとしています。ページネーションを使用してカスタムテンプレートで投稿を表示する最良の方法を教えてくれるチュートリアルを教えてもらえますか?
質問する
3521 次
1 に答える
0
ときどき(またはほとんどの場合、よくわかりませんが)パーマリンクの競合が発生し、カスタムを作成してページネーションを追加すると、予期しない404ページが表示さ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 に答える