Created
December 16, 2022 23:38
-
-
Save SitesByYogi/027deff3e7db5f03b4d5ddfaf221f699 to your computer and use it in GitHub Desktop.
Add Custom Link To WordPress Admin Dashboard
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
add_action( 'admin_menu', 'linked_url' ); | |
function linked_url() { | |
add_menu_page( 'linked_url', 'External link', 'read', 'my_slug', '', 'dashicons-text', 1 ); | |
} | |
add_action( 'admin_menu' , 'linkedurl_function' ); | |
function linkedurl_function() { | |
global $menu; | |
$menu[1][2] = "http://www.example.com"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment