Skip to content

Instantly share code, notes, and snippets.

@tehillim
Forked from hlashbrooke/function.php
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save tehillim/4b2ad4b8fdd784289e27 to your computer and use it in GitHub Desktop.

Select an option

Save tehillim/4b2ad4b8fdd784289e27 to your computer and use it in GitHub Desktop.
add_filter( 'product_vendors_vendor_slug', 'change_vendor_url_slug' );
function change_vendor_url_slug( $slug ) {
$slug = 'new_url';
return $slug;
}
@tehillim
Copy link
Author

우커머스 벤더 플러그인의 slug 주소 바꾸는 방법

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment