Skip to content

Instantly share code, notes, and snippets.

View tehillim's full-sized avatar
💭
I may be slow to respond.

Jewon Bong tehillim

💭
I may be slow to respond.
View GitHub Profile
add_filter( 'product_vendors_vendor_slug', 'change_vendor_url_slug' );
function change_vendor_url_slug( $slug ) {
$slug = 'new_url';
return $slug;
}