此外,如果CPT有相关的分类法,我也成功地使用以下代码重写了这些分类法:
/**
* Set \'with_front\' to false for the \'portfolio_category\' post taxonomy.
*/
add_filter( \'register_taxonomy_args\', function( $args, $taxonomy )
{
if( \'portfolio_category\' === $taxonomy && is_array( $args ) )
$args[\'rewrite\'][\'with_front\'] = false;
return $args;
}, 99, 2 );
以防对任何人都有帮助。