How can i disable/remove the columns for Media Library? I want for author and comments column.

Thanks in advance.

1 Answer
1

The hook for these columns is manage_media_columns. So just filter the columns here:

add_filter( 'manage_media_columns', 'wpse_77687_remove_media_columns' );

function wpse_77687_remove_media_columns( $columns )
{
    unset( $columns['author'] );
    unset( $columns['comments'] );
    return $columns;
}

Leave a Reply

Your email address will not be published. Required fields are marked *