所以我创建了一个似乎有效的自定义帖子类型。
然而,创建帖子的永久链接在帖子名称的前面有自定义帖子类型的名称。
我收到的地址如下:
http://demoforhim2.e-ddl.com/movie_reviews/secondone/
并尝试将其更改为:http://demoforhim2.e-ddl.com/secondone/
我尝试使用空重写重写,但它没有用。
这是我的自定义帖子类型
add_action( 'init', 'create_movie_review' );
function create_movie_review() {
register_post_type( 'movie_reviews',
array(
'labels' => array(
'name' => 'Movie Reviews',
'singular_name' => 'Movie Review',
'add_new' => 'Add New',
'add_new_item' => 'Add New Movie Review',
'edit' => 'Edit',
'edit_item' => 'Edit Movie Review',
'new_item' => 'New Movie Review',
'view' => 'View',
'view_item' => 'View Movie Review',
'search_items' => 'Search Movie Reviews',
'not_found' => 'No Movie Reviews found',
'not_found_in_trash' => 'No Movie Reviews found in Trash',
'parent' => 'Parent Movie Review'
),
'public' => true,
'menu_position' => 15,
'supports' => array( 'title', 'editor', 'comments', 'thumbnail' ),
'taxonomies' => array( '' ),
'menu_icon' => plugins_url( 'images/16x16.png', __FILE__ ),
'has_archive' => true,
'rewrite' => array('slug' => '', 'with_front' => FALSE) /*doesnt seem to work*/
)
);
}
出于某种原因,上述情况无法正常运作。
答案 0 :(得分:0)
试试这个......
'rewrite' => array('slug' => '/')
输出:example.com/headline /
Slug被删除 - 没有额外的斜线。
请记住刷新永久链接(设置 - >永久链接)
来源:http://wordpress.org/support/topic/how-can-i-create-a-custom-post-type-with-empty-slug