A `[documents]` shortcode which will display a list of attached files, with file type icons, and linked to the files for easy downloading.
There is no settings page. Just upload attachments to a post or page, and put
the [documents] shortcode where you wish the list of attachments to appear.
There are two attributes you can use with the shortcode to control which
attached documents are listed: mimetype and ext.
The default match is for mimetype application/*. For other types, you will
need to specifically override that attribute.
Examples:
Just .XLS files:
`[documents ext="xls"]`
All .DOC, .DOCX, or .PDF files:
`[documents ext="doc,docx,pdf"]`
Only 'video' types with a .MOV extension:
`[documents mimetype="video" ext="mov"]`
Just application/pdf mimetypes:
`[documents mimetype="application/pdf"]`
All attached documents, regardless of type:
`[documents mimetype="*"]`
If WordPress tells you that a file failed to upload due to an error ("Sorry, this file type is not permitted for security reasons."), you may need to adjust the list of allowed file extensions. For more information on how to do this, see:
http://wordpress.org/extend/plugins/ap-extended-mime-types/
http://wordpress.org/extend/plugins/manage-upload-types/
http://www.wprecipes.com/wordpress-tip-allow-upload-of-more-file-types
See the dc_documents.css file for the default styles. Document icons are in
the images sub-folder of the plugin.
You can override these styles in your theme's CSS by adding more specific selectors. For example, you could change the font used for the file titles in posts with a rule similar to this:
`.post ul.dc_documents li a { font-family: Courier,monospace; }`
By default, images are filtered out of the list (because, that's what galleries are for, right?). If you want to list all attached documents, with no filtering, just say so:
`[documents mimetype="*"]`
Technically, any file type that WordPress will allow you to upload as an attachment (see above). More specifically, there are icons included for the following types of files:
PDF: `.pdf`
MS Word: `.doc`, `.docx`
MS Excel: `.xls`, `.xlsx`
MS PowerPoint: `.ppt`, `.pptx`
MS Visio Diagrams: `.vsd`, `.vsdx`
MS Access Database: `.mdb`, `.mdbx`
ZIP: `.zip`
Any other extension will display a generic text document icon. I realize this list is slanted towards Microsoft applications, but that's just due to the original plugin usage. Other extension => icon mappings will be added in the future, and I am open to suggestions.
At this time, the only supported icon size is 32 x 32 pixels.
Requires: 2.5 or higher
Compatible up to: 3.4.2
Last Updated: 2012-11-6
Downloads: 1,524
Got something to say? Need help?