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
Wordpress自定义帖子类型将我重定向到帖子_Wordpress - Fatal编程技术网

Wordpress自定义帖子类型将我重定向到帖子

Wordpress自定义帖子类型将我重定向到帖子,wordpress,Wordpress,如果我在“自定义帖子类型编辑”页面上,并单击菜单中的“编辑出版物”或“创建链接”,我总是会被重定向到“常规帖子”页面 $labels = array( 'name' => 'Edit Publications', 'singular_name' => 'Edit Publications', 'edit_item' => 'Edit Publicati

如果我在“自定义帖子类型编辑”页面上,并单击菜单中的“编辑出版物”或“创建链接”,我总是会被重定向到“常规帖子”页面

$labels = array(
            'name'               => 'Edit Publications',
            'singular_name'      => 'Edit Publications',
            'edit_item'          => 'Edit Publications'
        );
        $args = array(
            'labels'            => $labels,
            'public'            => true,
            'publicly_queryable'=> true,
            'show_ui'           => true,
            'show_in_nav'       => true,
            'query_var'         => true,
            'map_meta_cap'      => true,
            'hierarchical'      => false,
            'supports'          => array(''),
            'has_archive'       => true,
            'rewrite'           => array('slug' => 'publication')
        );
如果我第一次进入wp管理员页面,或者我目前没有编辑任何帖子,那么url会有所不同,并且工作正常

e、 g 目前我在仪表板页面上,编辑出版物的链接是

http://example.com/wp-admin/edit.php?post_type=mfl_publication
http://example.com/wp-admin/post.php/edit.php?post_type=mfl_publication
如果我在自定义文章类型编辑页面上,则编辑出版物的链接为

http://example.com/wp-admin/edit.php?post_type=mfl_publication
http://example.com/wp-admin/post.php/edit.php?post_type=mfl_publication
我不知道为什么 谢谢你试试这个

function create_example()
{
    register_taxonomy_for_object_type('category', 'example'); // Register Taxonomies for Category
    register_taxonomy_for_object_type('post_tag', 'example');
    register_post_type('example', // Register Custom Post Type
        array(
            'labels' => array(
                'name' => __('example', 'example'), // Rename these to suit
                'singular_name' => __('Comunicado', 'example'),
                'add_new' => __('Add New', 'example'),
                'add_new_item' => __('Add New Comunicado', 'example'),
                'edit' => __('Edit', 'example'),
                'edit_item' => __('Edit Comunicado', 'example'),
                'new_item' => __('New Comunicado', 'example'),
                'view' => __('View Comunicado', 'example'),
                'view_item' => __('View Comunicado', 'example'),
                'search_items' => __('Search Comunicado', 'example'),
                'not_found' => __('Nothing Found', 'example'),
                'not_found_in_trash' => __('Nothing Found in Trash', 'example')
            ),
            'public' => true,
            'hierarchical' => true, // Allows your posts to behave like Hierarchy Pages
            'has_archive' => true,
            'supports' => array(
                'title',
                'thumbnail'
            ), // Go to Dashboard Custom HTML5 Blank post for supports
            'can_export' => true, // Allows export in Tools > Export
            'taxonomies'  => array( 'category' )
        ));
}


add_action('init', 'create_example'); // Add our HTML5 Blank Custom Post Type