The following code will render a custom link in your WordPress administration dashboard. On BeliefMedia, we link to a style and shortcode guide for contributors and staff.
Copy and paste the WordPress function into your theme's functions.php
file or, if you sensibly have one installed, your custom functions plugin.
1
<?php
2
/*
3
Custom WP Administration Panel Link
4
http://www.beliefmedia.com/code/wp-snippets/wp-dashboard-link
5
*/
6
7
8
global $wp_admin_bar;
9
10
$wp_admin_bar->add_menu(array(
11
'id' => 'wp-admin-bar-new-item',
12
13
'href' => 'http://www.beliefmedia.com/my-custom-link/'
14
));
15
}
16
The Result
A screenshot from one of our sites.