2011-06-27 20 views
0

私はTwenty 10テーマのテーマテーマを作成中です。私は自分のfunctions.phpページで設定したカスタム分類の投稿を表示していないページがあります。しかし、私は個々の投稿を見ることができます、私はちょうどそれらをページ上でプレビューすることができません。Wordpressでタクソノミーが表示されない

add_action('init', 'gallery_register'); 

function gallery_register() { 

$labels = array(
    'name' => _x('Photo Gallery', 'post type general name'), 
    'singular_name' => _x('Gallery Item', 'post type singular name'), 
    'add_new' => _x('Add New', 'gallery item'), 
    'add_new_item' => __('Add New Gallery Item'), 
    'edit_item' => __('Edit Gallery Item'), 
    'new_item' => __('New Gallery Item'), 
    'view_item' => __('View Gallery Item'), 
    'search_items' => __('Search Gallery'), 
    'not_found' => __('Nothing found'), 
    'not_found_in_trash' => __('Nothing found in Trash'), 
    'parent_item_colon' => '' 
); 

$args = array(
    'labels' => $labels, 
    'public' => true, 
    'publicly_queryable' => true, 
    'show_ui' => true, 
    'query_var' => true, 
    'menu_icon' => get_stylesheet_directory_uri() . '/article16.png', 
    'rewrite' => true, 
    'capability_type' => 'post', 
    'hierarchical' => false, 
    'menu_position' => null, 
    'supports' => array('title','editor','thumbnail','comments','revisions','excerpt','page-attributes') 
); 

    register_post_type('gallery' , $args); 
} 

register_taxonomy("photo_categories", array("gallery"), array("hierarchical" => true, "label" => "Photos Categories", "singular_label" => "Photo", "rewrite" => true)); 

それはおそらく非常に簡単だが、私のことができます。私は抜粋記事に

<?php if (is_page('photo-gallery')) { query_posts(array('posts_per_page' => 9, 'cat' => '13,25,26,27,28,29,30,31,32', 'paged' => get_query_var('paged'))); } ?> 

を表示するには、次のと私が持っているのfunctions.phpのページを使用していプレビューページの

私が間違ってやっていることを見ない、どんな考え?

答えて

関連する問題