Remove the SEO scores dropdown menu in Wordpress admin - http://wordpress.stackexchange.com/questions/151723/removing-filter-dropdown-in-posts-table-in-this-case-yoast-seo
// remove SEO scores dropdown
add_action( 'admin_init', 'wpse151723_remove_yoast_seo_posts_filter', 20 );
function wpse151723_remove_yoast_seo_posts_filter() {
global $wpseo_metabox;
if ( $wpseo_metabox ) {
remove_action( 'restrict_manage_posts', array( $wpseo_metabox, 'posts_filter_dropdown' ) );
}
}