Skip to content

Instantly share code, notes, and snippets.

@FriendlyWP
Created October 26, 2013 00:49
Show Gist options
  • Save FriendlyWP/7163987 to your computer and use it in GitHub Desktop.
Save FriendlyWP/7163987 to your computer and use it in GitHub Desktop.
WordPress SEO by Yoast tweaks
// 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