我一直在编写一些代码,使两个帖子类型能够共享一个自定义分类法。从管理的角度来看,它工作得非常好——但出于某种原因,当我查看网站上的分类法归档文件时,
/country/{country},尽管分类法中有两个帖子(每种类型一个),但它返回时显示“未找到帖子”,但不是404错误。我想知道我是否错过了一些让它工作的东西-我的代码如下。
register_taxonomy(
\'country\',
array(\'hotels\', \'attractions\'),
array(
\'label\' => __( \'Country\' ),
\'hierarchical\' => true,
\'sort\' => true,
\'args\' => array( \'orderby\' => \'term_order\' ),
\'rewrite\' => array( \'slug\' => \'country\' )
)
);