-
-
Save bentasm1/b4f16607919a26178ed1 to your computer and use it in GitHub Desktop.
Add custom link to pro dashboard navigation tabs
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
/* 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