Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/wordpress/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/ssh/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Wordpress 如何为自定义帖子类型创建子帖子类型_Wordpress_Custom Post Type_Learnpress - Fatal编程技术网

Wordpress 如何为自定义帖子类型创建子帖子类型

Wordpress 如何为自定义帖子类型创建子帖子类型,wordpress,custom-post-type,learnpress,Wordpress,Custom Post Type,Learnpress,我想知道如何使一个自定义帖子类型成为另一个自定义帖子类型的菜单项。如图所示,LearnPress在其菜单“课程”、“课程”等中的方式。LearnPress必须是自定义的帖子类型,而“课程”、“课程”等本身必须是自定义的帖子类型 但是如何使一个菜单项成为另一个菜单项呢?可以使用CPT-UI插件完成吗?只需在functions.php文件中添加以下代码 function my_custom_post_type() { $labels = array( 'name'

我想知道如何使一个自定义帖子类型成为另一个自定义帖子类型的菜单项。如图所示,LearnPress在其菜单“课程”、“课程”等中的方式。LearnPress必须是自定义的帖子类型,而“课程”、“课程”等本身必须是自定义的帖子类型


但是如何使一个菜单项成为另一个菜单项呢?可以使用CPT-UI插件完成吗?

只需在functions.php文件中添加以下代码

function my_custom_post_type() {

    $labels = array(
        'name'                  => _x( 'My new post', 'Post Type General Name', 'text_domain' ),
        'singular_name'         => _x( 'My new post', 'Post Type Singular Name', 'text_domain' ),
        'menu_name'             => __( 'Post Types', 'text_domain' ),
        'name_admin_bar'        => __( 'Post Type', 'text_domain' ),
        'archives'              => __( 'Item Archives', 'text_domain' ),
        'attributes'            => __( 'Item Attributes', 'text_domain' ),
        'parent_item_colon'     => __( 'Parent Item:', 'text_domain' ),
        'all_items'             => __( 'All Items', 'text_domain' ),
        'add_new_item'          => __( 'Add New Item', 'text_domain' ),
        'add_new'               => __( 'Add New', 'text_domain' ),
        'new_item'              => __( 'New Item', 'text_domain' ),
        'edit_item'             => __( 'Edit Item', 'text_domain' ),
        'update_item'           => __( 'Update Item', 'text_domain' ),
        'view_item'             => __( 'View Item', 'text_domain' ),
        'view_items'            => __( 'View Items', 'text_domain' ),
        'search_items'          => __( 'Search Item', 'text_domain' ),
        'not_found'             => __( 'Not found', 'text_domain' ),
        'not_found_in_trash'    => __( 'Not found in Trash', 'text_domain' ),
        'featured_image'        => __( 'Featured Image', 'text_domain' ),
        'set_featured_image'    => __( 'Set featured image', 'text_domain' ),
        'remove_featured_image' => __( 'Remove featured image', 'text_domain' ),
        'use_featured_image'    => __( 'Use as featured image', 'text_domain' ),
        'insert_into_item'      => __( 'Insert into item', 'text_domain' ),
        'uploaded_to_this_item' => __( 'Uploaded to this item', 'text_domain' ),
        'items_list'            => __( 'Items list', 'text_domain' ),
        'items_list_navigation' => __( 'Items list navigation', 'text_domain' ),
        'filter_items_list'     => __( 'Filter items list', 'text_domain' ),
    );
    $args = array(
        'label'                 => __( 'My new post', 'text_domain' ),
        'description'           => __( 'Post Type Description', 'text_domain' ),
        'labels'                => $labels,
        'supports'              => array( 'title', 'editor' ),
        'taxonomies'            => array( 'category', 'post_tag' ),
        'hierarchical'          => false,
        'public'                => true,
        'show_ui'               => true,
        'show_in_menu'          => true,
        'menu_position'         => 5,
        'show_in_admin_bar'     => true,
        'show_in_nav_menus'     => true,
        'can_export'            => true,
        'has_archive'           => true,
        'exclude_from_search'   => false,
        'publicly_queryable'    => true,
        'capability_type'       => 'page',
    );
    register_post_type( 'post_type', $args );

}
add_action( 'init', 'my_custom_post_type', 0 );

或者您可以自定义新的帖子名称标签、名称等。。从这里开始:

谢谢你的回答:)。但我认为这并不能解决我的问题。这只是创建了一个新的自定义帖子类型。如何将自定义帖子类型列为其他帖子类型的菜单项?另外,你能解释一下“文本域”参数的用途吗?你可以通过自定义帖子类型用户界面实现。当你用CPTUI为你的帖子类型设置时,你应该会在选项列表的某个地方看到一个下拉列表,该列表与将其设置为层次相关。您需要从下拉列表中选择“true”,然后保存。完成后,当您在帖子类型中创建新帖子时,您应该会在右侧的侧栏中看到一个下拉列表,允许您选择一位家长。我很抱歉,但我认为这里遗漏了一些内容。先生,您看到附件中的图片了吗?如果不是,请考虑看一次,因为它会帮助你更好地理解问题。我非常感谢你的帮助。谢谢