WP Page Numbers タイトルがNothing found forになってしまいます
-
ページ送りのボタンは正常に表示されますが、2ページ目をクリックすると
次のページが Nothing found for とういタイトルになってしまいます。
他のページ送りプラグインも試しましたが同様にNothing found forとなります。
宜しければご教授下さい。
宜しくお願い致します。<?php
/* Template Name: index */
get_header(); ?>
<?php get_sidebar(); ?>
<div id=”main”>
<div class=”dlist”>
<div class=”content2″><?php
$args = array(
‘post_type’ => ‘post’, /* 投稿タイプ */
‘posts_per_page’ => ‘5’,
‘paged’ => $paged,
‘orderby’ => ‘modified’,
); ?><?php query_posts( $args ); ?>
<?php if(function_exists(‘wp_page_numbers’)) : wp_page_numbers(); endif; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post();
/* ループ開始 */ ?>
トピック「WP Page Numbers タイトルがNothing found forになってしまいます」には新たに返信することはできません。