0

所以我创建了一个似乎有效的自定义帖子类型。

但是,创建帖子的永久链接在帖子名称前面具有自定义帖子类型的名称。

我收到的地址如下: 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*/
    )
);
}

由于某种原因,上述内容无法正常工作。

4

1 回答 1

0

尝试这个...

'rewrite' => array('slug' => '/')

输出:example.com/headline/

删除了弹头——没有多余的斜线。

记得刷新永久链接(设置->永久链接)

资料来源:http ://wordpress.org/support/topic/how-can-i-create-a-custom-post-type-with-empty-slug

于 2013-01-07T02:55:06.407 回答