mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
4 lines
208 B
Text
4 lines
208 B
Text
function remove_wpseo_wincher_dashboard_widget() {
|
|
remove_meta_box('wpseo-wincher-dashboard-overview', 'dashboard', 'normal');
|
|
}
|
|
add_action('wp_dashboard_setup', 'remove_wpseo_wincher_dashboard_widget');
|