Document library content
Document Library Pro comes with 2 layout options - the table and grid layout - which are controlled by the layout option. You have full control over the data displayed in the document library. You can choose what to display on the plugin settings page, or by using the content
option in the [doc_library]
shortcode (e.g. [doc_library content="title,content,link"]
.
Available fields
This option controls the information which is displayed about each document. The available options are:
- Table layout -
id
,title
,content
,excerpt
,image
,date
,date_modified
,doc_author
,doc_categories
,doc_tags
,download_count
,file_size
,file_type
,filename
,status
,link
, or any custom field or taxonomy. - Grid layout -
title
,excerpt
,image
,doc_author
,doc_categories
,file_size
,file_type
,filename
,link
.
You can list as many fields as you like and in any order. You must separate each field with a comma. It doesn’t matter if there are spaces before or after the comma, but there must not be any spaces before or after the = sign.
Here’s an example of a shortcode to display documents with fields for title, date, document author, excerpt and button:
[doc_library content="title,date,doc_author,excerpt,button"]
Details of fields
Fields available for both table and grid layouts
- The
title
field is the main document title. - The
excerpt
field will show the document excerpt. It will be truncated to 55 words (the WordPress default) but themes and plugins sometimes override this value. To have precise control over the length, you can set theexcerpt_length
option. If there is no excerpt then a dynamically generated excerpt from the content will be displayed instead. - The
image
field will display the featured image (i.e. the document thumbnail) for the document or page (seeimage_size
option to set a custom size for the table layout). If you are using the grid layout then the image field will display the featured image if available, otherwise it will show a file type icon. - The
doc_author
field will display the name of the document author. (Note: This is different from the WordPress user who created the document. We have separate instructions on how to display that.) - The
doc_categories
will display the categories for each document (comma-separated if there is more than one). - The
link
field will contain a link to the document and/or a preview link. - The
filename
field will display the file name as plain text, with no link. This is just for information and you should use one of the clickable fields for document links.
Please note that the above field names are case-sensitive and should always be lower case. (If you're using custom column headings then these can be any case.)
Fields available for table layout only
- The
id
field will display the document ID, which is a unique number used internally by WordPress for each document. - The
content
field will show the document content but will be truncated to 15 words. You can modify this by setting thecontent_length
option. For the grid layout, if there is no content then the excerpt will be displayed instead. - The
date
field will display the date that the document was published. - The
date_modified
field will display the date that the document was last updated. - The
doc_tags
field will display the tags for each document (comma-separated if there is more than one). - The
status
field will show the status of the document (e.g. draft, pending, publish, etc). - The
download_count
will show the total number of downloads for individual documents.
Custom field columns
Custom fields are a good way to include other types of content in the document library table view. You can use them to store links, buttons, icons, shortcodes from other plugins, etc. You should add the full HTML code or shortcode to the custom field so that the document library can display it correctly. If you’re adding shortcodes to your custom fields, you will need to set shortcodes to true.
You can add custom fields to your document library using the format cf:<field name>
. If you are using Advanced Custom Fields, the field name can be found under the “Field Name” column in the Custom Fields menu.
Here’s an example of adding two custom fields – my_field1
and my_field2
:
[doc_library content"title,content,cf:my_field1,cf:my_field2"]
Tip: While you can use any custom fields plugin to create custom fields, we recommend Easy Post Types and Fields plugin for the same. With the Easy Post Types and Fields plugin, you can effortlessly create post types, fields, and taxonomies. Alternatively, you can create custom fields with Advanced Custom Fields, Custom Posts Type UI, or Pods.
Custom fields created using the Toolset plugin
If you're using Toolset to create your custom fields, then you need slightly different syntax to display them in the document library.
Toolset adds wpcf-
to the start of the custom field name, so if you create a custom field called 'link' (for example) then the correct syntax will be wpcf-link
. This means that if you want to create a document library with columns for name and a custom field called 'link' then you would need to add it as follows:
[doc_library columns="name,cf:wpcf-link"]
ACF repeater fields
If you're using Advanced Custom Fields Pro repeater fields, you can create a column using the name of the parent repeater field. This column will list the content of all the repeater fields for that document, separated by commas. It is not possible to display repeater sub-fields as separate columns in the document library.
ACF group fields
Please see our separate article on how to display sub-fields which are part of an ACF group field.
Custom taxonomy columns
For taxonomies (other than document categories and tags), use the format tax:<taxonomy slug>
. So, for example, to display a custom taxonomy with the slug document_type
, you would use:
[doc_library columns="title,content,tax:document_type"]
You can find the taxonomy slug by going to the WordPress admin and finding the main page which lists those taxonomies. For example, WooCommerce product categories are edited under the Products → Categories menu. On that page, the URL at the top of the screen shows “…edit-tags.php?taxonomy=product_cat….”. The ‘product_cat’ bit after the equals is the taxonomy slug you need to use.
Creating custom columns programmatically
Developers can use custom columns to display data programmatically which is not available as one of the standard document library columns.
Choosing your own column headings
You can set custom column headings by adding a : (colon) after the column name. You can rename as many columns as you like. You can use this method to change the wording and/or capitalization of column names.
If you don’t change the column heading then the default one will be used. For example, the default heading for the document title is "Title", but if you wanted the heading “"MY HEADING" instead, you would use:
[doc_library columns="title:MY HEADING,date,doc_author,content"]
Here’s a more complex example where we want to set the title column heading to “Property Description”, the date column to “Added On”, a custom taxonomy to “Type” and a custom field to “Sale Price (£)”:
[doc_library document_type=property columns="title:Property Description,date:Added On,tax:listing_cat:Type,cf:valuation:Sale Price (£)"]
Note: In the above example, the taxonomy and custom field columns now have two colons – one to define the taxonomy (or custom field) name, and the other to set the column heading. This is perfectly fine as long as you use the correct syntax. For these column types, everything after the second colon will be used as the custom heading, including the space between the 2 words.
Removing a column heading
If you would like to remove the column heading completely use the keyword blank
after the colon. For example:[doc_library columns="title:blank,content,categories"]
When you do this, the column names will be removed and only the sort arrows will be hidden. If you want to hide the header row completely then you can do this using custom CSS.
How to hide a column
You can easily hide columns simply by removing them from the list of columns in the document library. This will remove the column from the document library.
If you wish to hide a column on specific devices only (e.g. mobiles or document libraries), please see the column_breakpoints option which allows you to do this.