全ての投稿はarchive-カスタム投稿名.phpで表示させられるのですが、
各カテゴリ毎の絞り込み表示が出来ない状態です。
カスタム投稿名はworksで、
現在以下archive-works.phpのソースで表示しています。
<span class="date"><time datetime="<?php the_time('Y-m-d'); ?>"><?php the_time('Y.m.d'); ?></time></span>
<h2 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <p><?php the_excerpt(); ?></p> </div><?php endwhile; endif; ?> </section>
function.phpには以下の記述でカスタム投稿を追加しています。
add_action( 'init', 'register_cpt_works' );
function register_cpt_works() {
$labels = array( 'name' => __( '施工事例', 'works' ), 'singular_name' => __( '施工事例', 'works' ), 'add_new' => __( '新規作成', 'works' ), 'add_new_item' => __( '新しい施工事例を追加', 'works' ), 'edit_item' => __( '施工事例を編集', 'works' ), 'new_item' => __( '新しい施工事例', 'works' ), 'view_item' => __( '施工事例を見る', 'works' ), 'search_items' => __( '施工事例検索', 'works' ), 'not_found' => __( '施工事例が見つかりません', 'works' ), 'not_found_in_trash' => __( 'ゴミ箱に施工事例はありません', 'works' ), 'parent_item_colon' => __( '施工事例', 'works' ), 'menu_name' => __( '施工事例', 'works' ), ); $args = array( 'labels' => $labels, 'hierarchical' => false, 'supports' => array( 'title', 'editor', 'excerpt', 'thumbnail', 'custom-fields' ), 'menu_icon' => 'img/common/works.png', 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 6, 'show_in_nav_menus' => true, 'publicly_queryable' => true, 'exclude_from_search' => true, 'has_archive' => true, 'query_var' => true, 'can_export' => true, 'rewrite' => true, 'capability_type' => 'post' ); register_post_type( 'works', $args ); //カスタムタクソノミー追加 register_taxonomy( 'works_type', 'works', array( 'hierarchical' => true, 'label' => '施工事例カテゴリー', 'show_ui' => true, 'query_var' => true, 'rewrite' => true, 'singular_label' => '施工事例カテゴリー' ) );
}
あなたの回答
tips
プレビュー