-
-
Save norewp/b529a5d5287a5c2cd0b4df23f92e046c to your computer and use it in GitHub Desktop.
Disable Elementor overview dashboard widget in WordPress
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
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