Add file name column to media library
Here you go, this code not only lists all filenames in Library but also allows you to sort them by name: // Add the column function filename_column( $cols ) { $cols[“filename”] = “Filename”; return $cols; } // Display filenames function filename_value( $column_name, $id ) { $meta = wp_get_attachment_metadata( $id ); echo substr( strrchr( $meta[‘file’], “https://wordpress.stackexchange.com/” … Read more