可以通过设置\'with_front\' => false
注册新的自定义帖子类型时,要删除Wordpress默认添加的自定义帖子类型slug,请通过\'slug\'=>\'\'
空的
E、 g。
//Example - how to pass array to rewrite
$args = array(
// This rewrite settings will remove the slug you want also the slug - /custom_post_type/
\'rewrite\' => array(\'slug\'=>\'\',\'with_front\'=>false),
);
register_post_type(\'custom_post_type\',$args);
参考-
Register_post_type()