自定义帖子类型创建404s?

时间:2012-11-11 05:25:05

标签: wordpress custom-post-type

我有一个名为“电影”的类别,所以我有site.com/movies/content-goes-here,但我不确定自定义帖子类型是否与该类别发生冲突,或者是否某些东西没有正确完成。

以下是自定义帖子类型:

    function movie_post_type() {
    register_post_type('movies', array(
    'labels' => array(
    'name' => 'Movie Posts',
    'singular_name' => 'Movie',
    'add_new' => 'Add New',
    'edit_item' => 'Edit ',
    'new_item' => 'New movie post',
    'view_item' => 'View movie post',
    'search_items' => 'Search movie posts',
    'not_found' => 'No movie posts found',
    'not_found_in_trash' => 'No movie posts found in Trash'
    ),
    'public' => true,

    'taxonomies' => array('category', 'post_tag')
    ));
    }


 add_action('init', 'movie_post_type');

我做错了什么吗?

1 个答案:

答案 0 :(得分:2)

不确定,但听起来您需要转到Settings > Permalinks并点击Save Changes清除重写缓存。