我有以下几点:
//Jobs
register_post_type( \'jobs\',
array(
\'labels\' => array(
\'name\' => __( \'Jobs\' ),
\'singular_name\' => __( \'Job\' )
),
\'public\' => true,
\'show_ui\' => true,
\'has_archive\' => false,
\'hierarchical\' => true,
\'query_var\' => true,
\'supports\' => array( \'title\', \'editor\', \'comments\', \'trackbacks\', \'revisions\',\'author\', \'excerpt\', \'custom-fields\', \'thumbnail\', \'page-attribute\' ),
\'rewrite\' => array(\'slug\' => \'jobs\', \'with_front\' => true),
\'taxonomies\' => array( \'post_tag\', \'category\'),
\'can_export\' => true,
\'show_in_nav_menus\' => true,
//\'capability_type\'=>\'jobs\',
//\'capabilities\' => array(
// \'read_post\' => \'read_jobs\'
//),
)
);
我试过这个:
\'has_archive\' => false,
但作业自定义帖子类型仍在使用archive.php
样板
你知道这里出了什么问题吗?