Created
October 26, 2013 00:49
-
-
Save FriendlyWP/7163987 to your computer and use it in GitHub Desktop.
WordPress SEO by Yoast tweaks
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
// FILTER WORDPRESS SEO BY YOAST outputs in the WordPress control panel | |
// remove WP-SEO columns from edit-list pages in admin | |
add_filter( 'wpseo_use_page_analysis', '__return_false' ); | |
// put WP-SEO panel at bottom of edit screens (low priority) | |
add_filter('wpseo_metabox_prio' , 'my_wpseo_metabox_prio' ); | |
function my_wpseo_metabox_prio() { | |
return 'low' ; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment