dousha7904 2015-06-23 10:20
浏览 68
已采纳

在Wordpress中为自定义帖子类型制作孩子?

I need help! I have create a custom post type in my theme and it worked. It has result:

  • mysitename.co/collage/harvard

I want new childs that can be added, I mean like this:

  • mysitename.co/collage/harvard/address

  • mysitename.co/collage/harvard/students

from above where the "address and students" is child from harvard.

My current code is:

add_action('init', 'register_segala_Collage');

function register_all_list_Collage() {

    $labels = array( 
        'name' => _x('Collage', 'newborne'),
        'singular_name' => _x('Collage', 'newborne'),
        'all_items' => _x('All Collage', 'newborne'),
        'add_new' => _x('Add List Collage', 'newborne'),
        'add_new_item' => _x('Add List Collage', 'newborne'),
        'edit' => _x('Edit List Collage', 'newborne'),
        'edit_item' => _x('Edit List Collage', 'newborne'),
        'new_item' => _x('New Collage', 'newborne'),
        'view' => _x('View Collage', 'newborne'),
        'view_item' => _x('View Collage', 'newborne'),
        'search_items' => _x('Search Collage', 'newborne'),
        'not_found' => _x('No Collage Found', 'newborne'),
        'not_found_in_trash' => _x('No Collage Found', 'newborne'),
        'menu_name' => _x( 'Collage', 'newborne' ),
    );

    $args = array(
        'labels' => $labels,
        'public' => true,
        'capability_type' => 'post',
        'rewrite' => array( 'slug' => 'Collage' ),
        'query_var' => true,
        'exclude_from_search' => true,
        'menu_position' => 5,
        'menu_icon' => 'dashicons-nametag',
        'supports' => array('title', 'editor', 'thumbnail')
    );
    register_post_type( 'Collage', $args );
}

How can I do that? is there any code? Thanks in help.

  • 写回答

1条回答 默认 最新

  • doulang9521 2015-06-24 03:59
    关注

    May be you should try hierarchical Custom Post Type. register_post_type takes hierarchical parameter which is either true or false. Default value is false, that means non-hierarchical custom post type.

    Check official documentation: https://codex.wordpress.org/Function_Reference/register_post_type

    Note:

    Please read the Note in the codex page. If you are going to have large number of posts then you might caught in performance issue.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签)
  • ¥50 sft下载大文阻塞卡死
  • ¥15 机器人轨迹规划相关问题