我在函数中添加了一个名为Report文学的自定义帖子类型。php:
add_action( \'init\', \'create_post_type\' );
function create_post_type() {
register_post_type( \'reportage\',
array(
\'labels\' => array(
\'name\' => __( \'Reportage\' ),
\'singular_name\' => __( \'Reportage\' )
),
\'public\' => true,
\'taxonomies\' => array(\'category\'),
\'query_var\' => true
)
);
register_taxonomy_for_object_type(\'category\', \'reportage\');
}
现在我想使用这个自定义url结构:“/%posttype%/%category%/%postname%”,但永久链接会生成为(并在访问时重定向到)“/%posttype%/%postname%”。如何将永久链接结构更改为“/%posttype%/%category%/%postname%”?
我需要“/%posttype%”来路由到与posttype(报告文学)同名的常规页面,现在可以了。
我还需要“/%posttype%/%category%”来路由到类似类别的内容。php文件。
我怎样才能做到这一点?