-
-
Save tehillim/4b2ad4b8fdd784289e27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'product_vendors_vendor_slug', 'change_vendor_url_slug' ); | |
| function change_vendor_url_slug( $slug ) { | |
| $slug = 'new_url'; | |
| return $slug; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
우커머스 벤더 플러그인의 slug 주소 바꾸는 방법