Skip to content

Instantly share code, notes, and snippets.

@bentasm1
Forked from digitalchild/functions.php
Last active May 30, 2020 15:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bentasm1/b4f16607919a26178ed1 to your computer and use it in GitHub Desktop.
Save bentasm1/b4f16607919a26178ed1 to your computer and use it in GitHub Desktop.
Add custom link to pro dashboard navigation tabs
/* WC Vendors Pro - Add a custom link to your Pro Dashboard navigation bar */
add_filter( 'wcv_pro_dashboard_urls', 'custom_menu_link' );
function custom_menu_link( $pages ) {
$pages[ 'custom_link' ] = array(
'slug' => 'http://yoursite.com/customlink/here', // Change this to whatever you like, it must be a full URL
'label' => __('My Custom Link', 'wcvendors-pro' ),
'actions' => array()
);
return $pages;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment