Skip to content

Instantly share code, notes, and snippets.

@smonteverdi
Created May 19, 2012 17:41
Show Gist options
  • Select an option

  • Save smonteverdi/2731661 to your computer and use it in GitHub Desktop.

Select an option

Save smonteverdi/2731661 to your computer and use it in GitHub Desktop.
WordPress: Add Widget to Dashboard
// Add a widget in WordPress Dashboard
function wpc_dashboard_widget_function() {
// Entering the text between the quotes
echo "<ul>
<li>Release Date: March 2012</li>
<li>Author: Aurelien Denis.</li>
<li>Hosting provider: my own server</li>
</ul>";
}
function wpc_add_dashboard_widgets() {
wp_add_dashboard_widget('wp_dashboard_widget', 'Technical information', 'wpc_dashboard_widget_function');
}
add_action('wp_dashboard_setup', 'wpc_add_dashboard_widgets' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment