Skip to content

Instantly share code, notes, and snippets.

@fervous
Created January 31, 2017 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fervous/27c269b78b8af00b4f94d0447a014766 to your computer and use it in GitHub Desktop.
Save fervous/27c269b78b8af00b4f94d0447a014766 to your computer and use it in GitHub Desktop.
change dashboard link name label wc vendors pro
add_filter('wcv_dashboard_home_url', 'rename_wcv_dashboard_home_url');
function rename_wcv_dashboard_home_url ( $args ){
$args['label'] = 'Change the DASHBOARD link here....';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment