Last active
September 1, 2015 09:24
-
-
Save digiltd/2d3fdae7711511ab00d2 to your computer and use it in GitHub Desktop.
wordpress remove Mandrill widget from dashboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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