Skip to content

Instantly share code, notes, and snippets.

@EvanHerman
Last active December 1, 2015 14:11
Show Gist options
  • Save EvanHerman/61cf28ee6282c19849ed to your computer and use it in GitHub Desktop.
Save EvanHerman/61cf28ee6282c19849ed to your computer and use it in GitHub Desktop.
Remove Easy Forms for MailChimp dashboard widgets for everyone but admins.
<?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