https://test1.veronica9.com/columnlist/
wordpressの固定ページに投稿一覧を表示し、
投稿下にページネーションを置いたのですが、
うまく作動しません。
お分かりになる方、
ご教授いただけますと幸いです。
<!--メインコンテンツ--> <main id="main-contents" class="main-contents <?php echo is_article_design(); ?> <?php is_animation_style(); ?>" itemprop="mainContentOfPage"> <section class="column"> <h1 class="">コラム一覧</h1> <?php
global $post;
$args = array( 'posts_per_page' => 6 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) {
setup_postdata($post);
?>
</div> <div class="time"> <?php the_time('Y.m.d') ?> </div> <div class="category"> <?php the_category(',') ?> </div> --> <div class="catch_innner_r"> <div class="columntext"> <?php if( has_excerpt() ){ the_excerpt(); echo '<a href="'; the_permalink(); echo '">続きを読む</a>'; } else { the_excerpt(); } ?> </div> </div> </div> </a><a class="column_a" href="<?php the_permalink(); ?>"> <div class="column_area"> <div class="catch_innner_l"> <div class="column_eyecatch"> <?php the_post_thumbnail('index_thumbnail'); ?> </div> </div> <!-- <div class="title"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</section> <?php
}
wp_reset_postdata();
?>
<div class="pagi_nation"> <?php
// ①ページネーションに現在のページ位置を知らせるのに必要
$paged = (int) get_query_var('paged');
// ②記事一覧のMaxページ数を取得するのに必要
$the_query = new WP_Query($args);
// ↑をすれば、$the_query->max_num_pages ← Maxページ数を取得できるように
// ページネーション
$page_arg = array(
'current' => max( 1, $paged ),
'total' => $the_query->max_num_pages,
);
echo paginate_links($page_arg);
</div> <?php get_footer(); ?>?></div> <?php comments_template(); ?> <?php if( is_bread_display() == "exist") :?> <?php if( is_mobile() ): ?> <?php get_template_part('include/breadcrumb'); ?> <?php endif; ?> <?php endif; ?> <?php if( is_front_page() ) :?> <?php if ( wp_isset_widets( 'home-bottom-widget',true ) ) : ?> <div id="home-bottom-widget"> <?php dynamic_sidebar( 'home-bottom-widget' ); ?> </div> <?php endif; ?> <?php endif; ?> </main> <?php get_sidebar(); ?>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/11 16:51
2021/03/12 01:41
2021/03/12 09:24 編集