我创建了我的帖子类型,但我不知道我做错了archive.php显示所有帖子而不是archive-gallery.php。这是代码。
自定义-后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 );
以下是主题内的文件:
文件插件向我显示该页面由archive.php
显示你能帮我解决一下吗?我试图注意问题在哪里但没有结果。
答案 0 :(得分:1)
注册时,您的图库中会出现拼写错误:
register_post_type( 'galllery', $args );
将其更改为gallery
而不是galllery
。