Skip to content

Instantly share code, notes, and snippets.

@bhubbard
Forked from kungfuguapo/wpe-disable-dify.php
Created March 24, 2016 23:06
Show Gist options
  • Save bhubbard/5958cea6bd3569ae1adb to your computer and use it in GitHub Desktop.
Save bhubbard/5958cea6bd3569ae1adb to your computer and use it in GitHub Desktop.
<?php
/*
Disable Dify
*/
add_action( 'admin_init', 'wpe_disable_dashboard_widgets', 9999 );
function wpe_disable_dashboard_widgets() {
remove_meta_box('dashboard_primary', 'dashboard', 'core'); // WordPress News Widget
remove_meta_box('wpe_dify_news_feed', 'dashboard', 'normal'); // WPEngine News Widget
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment