我用WordPress创建了一个新的自定义帖子类型。但是,slug会将post添加到父级,如下所示:
http://example.com/UNNCESSARY-PARENT/post-title
但是,我希望它能够创建:
http://example.com/post-title
这可能吗?以下是我注册帖子类型的方式:
function create_films() {
register_post_type( \'films\',
array(
\'labels\' => array(
\'name\' => \'Films\' ,
\'singular_name\' => \'Films\'
),
\'public\' => true,
\'has_archive\' => false,
\'taxonomies\' => array(\'category\', \'post_tag\')
)
);
}
add_action( \'init\', \'create_films\' );
这是
documentation.