Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
[Product Vendors] Change the vendor URL slug
add_filter( 'wcpv_vendor_slug', 'change_product_vendors_slug' );
function change_product_vendors_slug() {
return 'your-new-slug';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment