好的,我已经制作了自定义帖子类型,它们工作正常(代码如下所示)。但我似乎无法为其创建默认页面,例如 example.com/php < 如何获取该页面。我可以制作像 example.com/php/some page/ 这样的页面,它们工作正常。
$labels = array(
'name' => _x('PHP', 'post type general name'),
'singular_name' => _x('PHP', 'post type singular name'),
'add_new' => _x('Add New', 'PHP Page'),
);
$args = array(
'labels' => $labels,
'taxonomies' => array('post_tag'),
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => true,
'menu_position' => null,
'supports' => array( 'title', 'editor', 'page-attributes')
);
register_post_type('php',$args);
谢谢!