Remove SEO admin columns
-
Hi, I am trying to save space in my Admin Columns list and would like to remove the SEO column.
I tried pasting filter from this thread into my child theme’s
functions.phpwith no success. I also tried to unset theSEOcolumn with themanage_posts_columnsfeature, but with no success either.Here is the code I am working with. Any suggestions?
/** * Filter out admin columns. * * @since 1.0 */ function md_admin_columns( $columns ) { unset( $columns['tags'] ); unset( $columns['SEO'] ); return $columns; } function md_admin_columns_init() { add_filter( 'manage_posts_columns' , 'md_admin_columns' ); add_filter( 'the_seo_framework_show_seo_column', '__return_false' ); } add_action( 'admin_init' , 'md_admin_columns_init' );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Remove SEO admin columns’ is closed to new replies.