Return to Snippet

Revision: 50409
at August 19, 2011 23:09 by silentpro


Initial Code
/* CUSTOM DEVELOPER MESSAGE */
add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');

    function my_custom_dashboard_widgets() {
    global $wp_meta_boxes;

    wp_add_dashboard_widget('custom_help_widget', 'Your Site Support!', 'custom_dashboard_help');
    }

    function custom_dashboard_help() {
    echo '<p>ENTER NOTE FOR CUSTOMER HERE <a href="mailto:[email protected]">LINK</a>, OR ADD YOUR CONTACT NUMBER ###-###-####.</a></p>
<img src="'.get_bloginfo('template_url').'/PATHTO/IMG.png" />';
}

Initial URL


Initial Description


Initial Title
Wordpress - Custom Dashboard Widget

Initial Tags
php, textmate, wordpress, customer

Initial Language
Other