Last active
December 1, 2015 14:11
-
-
Save EvanHerman/61cf28ee6282c19849ed to your computer and use it in GitHub Desktop.
Remove Easy Forms for MailChimp dashboard widgets for everyone but admins.
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 | |
// when copying, do not include lines 1 & 2 | |
// Create the function to use in the action hook | |
function yikes_remove_stats_dashboard_widget() { | |
// Check user capabilities | |
if( ! current_user_can( 'manage_options' ) ) { | |
// Remove the stats metabox | |
remove_meta_box( 'yikes_easy_mc_list_stats_widget', 'dashboard', 'normal' ); | |
// Remove the list activity metabox | |
remove_meta_box( 'yikes_easy_mc_account_activity_widget', 'dashboard', 'normal' ); | |
} | |
} | |
// Hook into the 'wp_dashboard_setup' action to register our function | |
add_action('wp_dashboard_setup', 'yikes_remove_stats_dashboard_widget' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment