【问题标题】:Unexpexted Archive.php show posts instead of archive-{Custom Post Type}意外 Archive.php 显示帖子而不是存档-{自定义帖子类型}
【发布时间】:2018-02-01 12:18:50
【问题描述】:

我已经创建了我的帖子类型,但我不知道我做错了什么,因为archive.php 显示所有帖子而不是archive-gallery.php。这是代码。

custom-post-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显示的

你能帮我解决这个问题吗?我试图注意到问题出在哪里,但没有结果。

【问题讨论】:

    标签: php wordpress custom-post-type archive


    【解决方案1】:

    注册时您的图库中有错字:

    register_post_type( 'galllery', $args ); 
    

    将其更改为 gallery 而不是 galllery

    【讨论】:

    • 我要休息了^^。令人难以置信的是我没有注意到这一点。我在代码中寻找更严重的问题。谢谢。现在它运行良好。
    • @PawełStanecki 没问题 :)
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2022-07-20
    • 1970-01-01
    • 1970-01-01
    • 2017-06-10
    • 2017-03-12
    • 2013-06-02
    • 1970-01-01
    相关资源
    最近更新 更多