mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-05 12:32:23 +08:00
9 lines
306 B
Text
9 lines
306 B
Text
add_filter( 'woocommerce_taxonomy_args_product_shipping_class', 'bbloomer_taxonomy_args_product_shipping_class' );
|
|
|
|
function bbloomer_taxonomy_args_product_shipping_class( $args ) {
|
|
$args['query_var'] = true;
|
|
$args['rewrite'] = array(
|
|
'slug' => 'vendor', // SLUG_BASE
|
|
);
|
|
return $args;
|
|
}
|