Skip to content

Instantly share code, notes, and snippets.

Created January 20, 2016 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/1524971a48938bbabe52 to your computer and use it in GitHub Desktop.
Save anonymous/1524971a48938bbabe52 to your computer and use it in GitHub Desktop.
<?php
// 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:yourusername@gmail.com">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');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment