我使用带有自定义帖子类型和自定义分类法的 WordPress。
问题
我尝试使用路径创建一个帖子,/nyheter/bolag/post/
但它被重定向到/bolag/post/
. 这是因为我有一个带有 slug 的自定义帖子类型,bolag
而 WP 可能会尝试更正路径。
这是如何解决的?代码,插件?
代码放在functions.php中
<?php
add_action( 'init', 'create_post_type' );
add_action( 'init', 'register_taxonomies' );
function create_post_type() {
$args_bolag = array(
'labels' => array(
'name' => 'Bolag',
'singular_name' => 'Bolag'
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'bolag'),
);
$args_nyheter = array(
'labels' => array(
'name' => 'Nyheter',
'singular_name' => 'Nyheter'
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'nyheter'),
);
register_post_type( 'bolag', $args_bolag );
register_post_type( 'nyheter', $args_nyheter );
}
function register_taxonomies()
{
$args_firma = array(
'label' => __( 'Firma' ),
'rewrite' => array( 'slug' => 'nyheter/bolag' ),
'hierarchical' => true,
);
register_taxonomy( 'firma', 'nyheter', $args_firma );
}