Skip to content

Instantly share code, notes, and snippets.

@iagdotme
Created September 3, 2013 09:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iagdotme/6421432 to your computer and use it in GitHub Desktop.
Save iagdotme/6421432 to your computer and use it in GitHub Desktop.
Remove Mandrill Dashboard Widget
<?php
/* ------------------------------------------------------------------ */
// Remove Mandrill Dashboard Widget
// http://wordpress.org/support/topic/dashboard-widget?replies=3
function sp_remove_wpmandrill_dashboard() {
if ( class_exists( 'wpMandrill' ) ) {
remove_action( 'wp_dashboard_setup', array( 'wpMandrill' , 'addDashboardWidgets' ) );
}
}
add_action( 'admin_init', 'sp_remove_wpmandrill_dashboard' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment