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 matlab实现基于主成分变换的图像融合。
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊