WP-PageNaviが表示されない
-
いつもお世話になっております。
固定ページで作成した記事一覧をWPプラグイン「WP-PageNavi」でページ分割させたいと思っていますが、下記のコードを該当ページ内に挿入してもページナビゲーションが表示されません。
<?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ?>どなたかお力をかして頂けると幸いです。
どうぞ宜しくお願いします。<div id="content"> <?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ?> <?php query_posts( Array( 'post_type' => array ('events2','events'), 'posts_per_page' => 10, 'orderby' => 'date', 'order' => 'DESC' ) ); if (have_posts()) : while (have_posts()) : the_post(); ?> <?php if (get_post_type() === 'events'): ?> <div class="eventlist"> <div class="eventimg"> <?php $attach_id = get_post_meta($post->ID,"画像1",true); $image_info = wp_get_attachment_image_src( $attach_id , 'full' ); list( $url, $w, $h) = $image_info; $h = intval(200 * ( $h / $w )); $alt = get_post_meta($attach_id , '_wp_attachment_image_alt', true); ?> <img class="zzzz" src="<?php echo $url; ?>" alt="<?php echo $alt; ?>" width="127px" height="95px" /> </div> <div class="eventtext"> <?php if (function_exists('get_cat_icon')) get_cat_icon(); ?> <?php echo post_custom('開催日'); ?> <a> <?php the_title(); ?> </a> </div> </div> <?php else: ? <div class="eventlist"> <div class="eventimg"> <?php $attach_id = get_post_meta($post->ID,"画像1",true); $image_info = wp_get_attachment_image_src( $attach_id , 'full' ); list( $url, $w, $h) = $image_info; $h = intval(200 * ( $h / $w ));<br /> $alt = get_post_meta($attach_id , '_wp_attachment_image_alt', true); ?> <img class="zzzz" src="<?php echo $url; ?>" alt="<?php echo $alt; ?>" width="127px" height="95px" /> </div> <div class="eventtext"> <?php if (function_exists('get_cat_icon')) get_cat_icon(); ?> <?php echo post_custom('開催日'); ?> <a title="<?php the_title(); ?>の詳細へ" target="_blank"><?php the_title(); ?> </a> </div> </div> <?php endif; ?> <?php endwhile; endif; wp_reset_query(); ?> <!--div#content-->
5件の返信を表示中 - 1 - 5件目 (全5件中)
5件の返信を表示中 - 1 - 5件目 (全5件中)
- トピック「WP-PageNaviが表示されない」には新たに返信することはできません。