/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* 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() { <img src="'.get_bloginfo('template_url').'/PATHTO/IMG.png" />'; }