Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Created January 30, 2015 13:13
Show Gist options
  • Save wpweb101/c6cf9295289916fb8766 to your computer and use it in GitHub Desktop.
Save wpweb101/c6cf9295289916fb8766 to your computer and use it in GitHub Desktop.
Social Deals - Vendors : Change vendor URL slug
<?php
add_filter( 'sde_vendors_vendor_slug', 'change_vendor_url_slug' );
function change_vendor_url_slug( $slug ) {
$slug = 'new_url';
return $slug;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment