With version 3.8
add_filter( ‘wpseo_use_page_analysis’, ‘__return_false’ );
is still working.
However, there are still “SEO” and “Readability” columns in the Categories and Tags pages in WP admin.
These I could only remove by editing the class-taxonomy-columns.php file and inserting two lines as marked:
/**
* WPSEO_Taxonomy_Columns constructor.
*/
public function __construct() {
$this->taxonomy = $this->get_taxonomy();
/*------ inserted one line below ------*/
if ( apply_filters( 'wpseo_use_page_analysis', true ) === true ) {
if ( ! empty( $this->taxonomy ) ) {
add_filter( 'manage_edit-' . $this->taxonomy . '_columns', array( $this, 'add_columns' ) );
add_filter( 'manage_' . $this->taxonomy . '_custom_column', array( $this, 'parse_column' ), 10, 3 );
}
/*------ inserted one line below ------*/
}
$this->analysis_seo = new WPSEO_Metabox_Analysis_SEO();
$this->analysis_readability = new WPSEO_Metabox_Analysis_Readability();
}
This is the same logic employed in class-meta-columns.php
I hope that Yoast can adopt this so that the filter
add_filter( ‘wpseo_use_page_analysis’, ‘__return_false’ );
works consistently.