Created
June 9, 2016 20:24
-
-
Save digitalchild/ec60f419458c33a8261be2a5006ca78c to your computer and use it in GitHub Desktop.
Add external link to dashboard
This file contains 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
<?php | |
// Add this to your themes functions.php | |
function new_dash_board_page( $pages ){ | |
$pages[] = array( 'label' => 'New Link', 'slug' => 'http://mysomelink.com' ); | |
return $pages; | |
} | |
add_filter( 'wcv_pro_dashboard_urls', 'new_page' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment