如果我在自定义帖子类型编辑页面上并单击菜单中的“编辑出版物”或“创建”链接,我将始终重定向到常规帖子页面!
$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-admin页面或者我目前没有编辑任何帖子,则网址不同并且工作正常
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
我不知道为什么 感谢
答案 0 :(得分:1)
试试这个
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