カテゴリ(archive.php)のページ送り
-
つい最近勉強のためWordPressを始めました。
インストールし、元々入っているDefaultテーマを使用し作成しています。カテゴリ別表示を行った際、ページ送りができません。
1ページ目しか表示されず、2ページ目以降のリンクなどもないので1ページ分しか読み込まれていないと思います。
ただ、同じ「archive.php」を使用している月別表示では問題なくページ送りが動作しています。プラグイン「WP-PageNavi」を使用しており、そのプラグインを使用するとページ送りができない不具合が・・・という事例が多いと知り調べましたが変化ありませんでした。
ただ、このプラグインが悪いのか、その他なのか確認するために
Defaultテーマで元々記述されていた
<div class="alignleft"><?php next_posts_link(__('« Older Entries', 'kubrick')); ?></div>
<div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')); ?></div>
この関数を記述してもカテゴリ別表示では表示されませんでした。
そのため、プラグインは原因ではないと思います。月別とカテゴリ別、同じ「archive.php」を使用しているというのに何故カテゴリ別ではページ送りができないのでしょうか?
優先度的にはカテゴリ別での表示を行いたいのですが。。念のため、archive.phpの内容を記載したいと思います。
<?php /** * @package WordPress * @subpackage Default_Theme */ get_header(); ?> <div id="content" class="narrowcolumn" role="main"> <?php if (have_posts()) : ?> <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php /* If this is a category archive */ if (is_category()) { ?> <h2 class="pagetitle"><span><?php printf(__('「%s」について', 'kubrick'), single_cat_title('', false)); ?></span></h2> <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?> <h2 class="pagetitle"><span><?php printf(__('Posts Tagged ‘%s’', 'kubrick'), single_tag_title('', false) ); ?></span></h2> <?php /* If this is a daily archive */ } elseif (is_day()) { ?> <h2 class="pagetitle"><span><?php printf(_c('Archive for %s|Daily archive page', 'kubrick'), get_the_time(__('F jS, Y', 'kubrick'))); ?></span></h2> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> <h2 class="pagetitle"><span><?php printf(_c('Archive for %s|Monthly archive page', 'kubrick'), get_the_time(__('F, Y', 'kubrick'))); ?></span></h2> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> <h2 class="pagetitle"><span><?php printf(_c('Archive for %s|Yearly archive page', 'kubrick'), get_the_time(__('Y', 'kubrick'))); ?></span></h2> <?php /* If this is an author archive */ } elseif (is_author()) { ?> <h2 class="pagetitle"><span><?php _e('Author Archive', 'kubrick'); ?></span></h2> <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> <h2 class="pagetitle"><span><?php _e('Blog Archives', 'kubrick'); ?></span></h2> <?php } ?> <div class="navigation"> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?> </div> <?php while (have_posts()) : the_post(); ?> <div <?php post_class(); ?>> <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> <hr /> <div class="entry"> <?php the_content() ?> </div> <?php the_category(); ?> <p class="postmetadata"><?php the_time('Y.m.d'); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'kubrick')); ?></div> <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')); ?></div> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?> </div> <?php else : if ( is_category() ) { // If this is a category archive printf("<h2 class='center'>".__("Sorry, but there aren't any posts in the %s category yet.", 'kubrick').'</h2>', single_cat_title('',false)); } else if ( is_date() ) { // If this is a date archive echo('<h2>'.__("Sorry, but there aren't any posts with this date.", 'kubrick').'</h2>'); } else if ( is_author() ) { // If this is a category archive $userdata = get_userdatabylogin(get_query_var('author_name')); printf("<h2 class='center'>".__("Sorry, but there aren't any posts by %s yet.", 'kubrick')."</h2>", $userdata->display_name); } else { echo("<h2 class='center'>".__('No posts found.', 'kubrick').'</h2>'); } get_search_form(); endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
お手数ですが、何卒ご助言お願いいたします。
- トピック「カテゴリ(archive.php)のページ送り」には新たに返信することはできません。