✨专业 WordPress 开发,定制建站,高效上线,合作即享优化服务!🚀
add_filter( 'register_post_type_args', 'change_woo_product_slug', 10, 2 );
function change_woo_product_slug( $args, $post_type ) {
if ( 'product' === $post_type ) {
// 设置 rewrite slug 为单数 product,with_front 控制是否保留前缀,比如 /shop/
$args['rewrite'] = array(
'slug' => 'product',
'with_front' => false,
'feeds' => true,
'pages' => true,
);
}
return $args;
}
修改完代码后,一定要到 设置→固定链接 页面点击 “保存更改” 来刷新一下 WordPress 的重写规则,否则新链接不会生效。