bhubbard
3/24/2016 - 11:06 PM

wpe-disable-dify.php

<?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
}