Skip to content

Instantly share code, notes, and snippets.

@fervous
Created April 1, 2017 18:11
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/b8ae64ce63f2011164b990be3df17d56 to your computer and use it in GitHub Desktop.
Save fervous/b8ae64ce63f2011164b990be3df17d56 to your computer and use it in GitHub Desktop.
add link to pro dashboard menu wc vendors pro
/* WC Vendors Pro - Add a new link to the Pro Dashboard */
function new_dashboard_page( $pages ){
$pages[] = array( 'label' => 'Your Page Name Here', 'slug' => 'https://your-website-here.com/the-page-here/' );
return $pages;
}
add_filter( 'wcv_pro_dashboard_urls', 'new_dashboard_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment