wordpress: how to add hierarchy to posts

后端 未结 8 1631
挽巷
挽巷 2020-12-30 16:01

I am creating a web-site on wordpress platform where I want to be able to post my own book texts. So what I want is to have a some kind of hierarchy where I would add a post

8条回答
  •  灰色年华
    2020-12-30 16:30

    Isn't this a better option?

    register_post_type( 'MYPOSTTYPE',
        array(
            'labels' => array(
                'name' => __( 'MYPOSTTYPE' ),
                'singular_name' => __( 'MYPOSTTYPE' )
            ),
            'supports' => array('title', 'editor', 'page-attributes'),
            'public' => true,
            'has_archive' => true,
            'hierarchical' => true,
            'rewrite' => array('slug' => 'MYPOSTTYPE'),
        )
    );
    

    I have added:

    'hierarchical' => true,

    and it works.

提交回复
热议问题