Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@quangbahoa
Forked from lukecav/functions.php
Created September 19, 2019 11:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quangbahoa/fbd083d63d3bf69b41a1dd6114e028c8 to your computer and use it in GitHub Desktop.
Save quangbahoa/fbd083d63d3bf69b41a1dd6114e028c8 to your computer and use it in GitHub Desktop.
Disable Elementor overview dashboard widget in WordPress
function disable_elementor_dashboard_overview_widget() {
remove_meta_box( 'e-dashboard-overview', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'disable_elementor_dashboard_overview_widget', 40);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment