注册post类型时,其中一个参数是rewrite,它使用了一个数组。确保有with_front
中的参数rewrite
数组,并将其设置为false
.
<?php
$args = array(
// other stuf...
\'rewrite\' => array(
\'slug\' => \'popups\',
\'with_front\' => false
),
// other stuf...
);
register_post_type( \'type\', $args );
这应该会解决的。
Important: 更改代码后,请确保刷新重写规则(转到“设置”>“永久链接”,然后单击“保存”)。