Forked from amboutwe/yoast_seo_dashboard_widget_remove.php
Created
March 2, 2018 01:52
-
-
Save eduardopintor/50c603d9807f12aefcaa9a3164fe8c26 to your computer and use it in GitHub Desktop.
Remove Yoast SEO Dashboard Widget
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
<?php | |
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/ | |
/* Remove Yoast SEO Dashboard Widget | |
* Credit: Unknown | |
* Last Tested: Jun 16 2017 using Yoast SEO 4.9 on WordPress 4.8 | |
*/ | |
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' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment