2017-08-23 4 views
0

投稿タイプを作成しましたが、archive.phpがarchive-gallery.phpの代わりにすべての投稿を表示していることを間違えています。ここにコードがあります。unexpexted Archive.php archive- {Custom Post Type}の代わりに投稿を表示します。

カスタムポストtypes.php

ここ
/*******   *******/ 
// Custom Post Type - gallery 
function register_post_gallery() { 
    $labels = array(
    'name'    => __('gallery', '_tk'), 
    'singular_name'  => __('gallery', '_tk'), 
    'add_new'   => __('Dodaj nową', '_tk'), 
    'add_new_item'  => __('Dodaj nową galerię', '_tk'), 
    'edit_item'   => __('Edytuj', '_tk'), 
    'new_item'   => __('Nowa', '_tk'), 
    'all_items'   => __('Wszystkie', '_tk'), 
    'view_item'   => __('Zobacz', '_tk'), 
    'search_items'  => __('Szukaj', '_tk'), 
    'not_found'   => __('Nie zneleziono żadnej', '_tk'), 
    'not_found_in_trash' => __('Nie zneleziono żadnej w koszu', '_tk'), 
    'parent_item_colon' => '', 
    'menu_name'   => __('Galeria', '_tk'), 
); 
    $args = array(
    'labels'   => $labels, 
    'hierarchical'  => true, 
    'supports'   => array('title', 'page-attributes', 'revisions', 'thumbnail'), 
    'taxonomies'  => array('gallery_category'), 
    'public'   => true, 
    'show_ui'   => true, 
    'show_in_menu'  => true, 
    'show_in_nav_menus' => true, 
    'publicly_queryable' => true, 
    'exclude_from_search' => false, 
    'has_archive'  => true, 
    'rewrite'   => array('slug' => 'gallery','with_front' => false), 
    'menu_position'  => 6, 
    'menu_icon'   => 'dashicons-admin-multisite' 
); 
    register_post_type('galllery', $args); 
} 
add_action('init', 'register_post_gallery'); 

/* gallery taxonomies */ 
function add_gallery_category() { 
    $labels = array(
    'name'    => __('Kategorie galerii', '_tk'), 
    'singular_name'  => __('Kategoria galerii', '_tk'), 
    'search_items'  => __('Szukaj kategorii', '_tk'), 
    'all_items'   => __('Wszystkie kategorie', '_tk'), 
    'parent_item'  => __('Kategoria nadrzędna', '_tk'), 
    'parent_item_colon' => __('Kategoria nadrzędna:', '_tk'), 
    'edit_item'   => __('Edytuj kategorię', '_tk'), 
    'update_item'  => __('Aktualizuj kategorię', '_tk'), 
    'add_new_item'  => __('Dodaj nową kategorię', '_tk'), 
    'new_item_name'  => __('Nowa kategoria', '_tk'), 
    'menu_name'   => __('Kategorie galerii', '_tk'), 
); 
    $args = array(
    'labels' => $labels, 
    'hierarchical' => true, 
    'show_ui' => true, 
    'query_var' => true, 
    'rewrite' => array('slug' => 'kategorie-galerii') 
); 
    register_taxonomy('gallery_category', 'gallery', $args); 
} 
add_action('init', 'add_gallery_category', 0); 

は、テーマ内の私のファイルです:ファイルプラグインはページが表示されていることを私に示して何

files

by archive.php

wtf

この問題を解決するのに手伝ってください。私は問題がどこにあるのかを知ろうとしていましたが、結果はありませんでした。

register_post_type('galllery', $args); 

変更それgallery代わりのgallleryに:あなたはそれを登録する際

答えて

1

あなたはあなたのギャラリーのタイプミスを持っています。

+0

私は休憩を取らなければならない^^。私はそれに気付かなかったことは信じられないほどです。コードでもっと深刻な問題を探していました。 ありがとうございます。今はうまくいきます。 –

+0

@PawełStanecki問題はありません:) –

関連する問題