ページネーションの結果に自分のカテゴリ ページが表示されない
「ビデオ」という名前のカスタム投稿タイプがあります
このタイプのすべての投稿を「車のビデオ」という名前の 1 つのカテゴリに入れました
このカテゴリ 'cars video' の ID は '9' であるため、テンプレート ページ category-9.php を使用します。
このコードをcategory-9.phpに配置します
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
?>
<?php query_posts( $query_string . '&post_type=videos&posts_per_page=10&paged=' . $paged ); ?>
<?php if ( have_posts() ) : ?>
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
/* Include the post format-specific template for the content. If you want to
* this in a child theme then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'content', 'videos' );
endwhile;
// twentytwelve_content_nav( 'nav-below' );
?>
<?php paging(); ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
最初のページ「sitename.com/blog/category/cat-videos/」は正常に動作していますが、このページは動作していません
「sitename.com/blog/category/cat-videos/page/1」
「sitename.com/blog/category/cat-videos/page/2」
等..
それは私に404.phpページを与えました
これはカスタム投稿登録です
$post_type_args = array(
'label' => 'Videos',
'labels' => array(
'name' => 'Videos',
'singular_name' => 'Video',
'menu_name' => 'Videos'
),
'public' => true,
'has_archive' => true,
'hierarchical' => true,
'supports' => array('title','author','thumbnail','comments'),
'rewrite' => array('slug' => 'videos'),
'taxonomies' => array('category','post_tag')
);
register_post_type('videos',$post_type_args);
何かアドバイスはありますか?