mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
5 lines
267 B
Text
5 lines
267 B
Text
add_action('wp_dashboard_setup', 'remove_wpseo_dashboard_overview' );
|
|
function remove_wpseo_dashboard_overview() {
|
|
// In some cases, you may need to replace 'side' with 'normal' or 'advanced'.
|
|
remove_meta_box( 'wpseo-dashboard-overview', 'dashboard', 'side' );
|
|
}
|