Ein eigenes Dashboard-Widget erstellen
function ah_custom_dashboard_widgets() {
global $wp_meta_boxes;
wp_add_dashboard_widget('custom_help_widget', 'Theme Support', 'ah_custom_dashboard_help');
}
function ah_custom_dashboard_help() {
echo '<p>Willkommen zum Custom Theme! Du brauchst Hilfe? Dann kontaktiere den Entwickler <a href="mailto:[email protected]">hier</a>. Für WordPress Tutorials besuche: <a href="http://www.drweb.de" target="_blank">Dr. Web Magazin</a></p>';
}
add_action('wp_dashboard_setup', 'ah_custom_dashboard_widgets');