

Every document keeps a complete, audited revision history — who changed what and when, each with a summary and one-click restore.
Document management and version control for WordPress. Collaborate on files, track every revision, and auto-generate change summaries with AI.
WP Document Revisions is a document management and version control plugin. Built for time-sensitive and mission-critical projects, teams can collaboratively edit files of any format — text documents, spreadsheets, images, sheet music… anything — all the while, seamlessly tracking the document’s progress as it moves through your organization’s existing workflow.
WP Document Revisions keeps pace with modern WordPress:
See the full list of features for more information.
Complete Documentation Site – Your one-stop resource for everything about WP Document Revisions.
Powerful Collaboration Tools – With great power does not have to come great complexity. Based on a simple philosophy of putting powerful but intuitive tools in the hands of managers and content creators, WP Document Revisions leverages many of the essential WordPress features that, for more than eight years, have been tested and proven across countless industries — posts, attachments, revisions, taxonomies, authentication, and permalinks — to make collaborating on the creation and publication of documents a natural endeavor. Think of it as an open-source and more intuitive version of the popular Microsoft collaboration suite, Sharepoint.
Document History – At each step of the authoring process, WP Document Revisions gives you an instant snapshot of your team’s progress and the document’s history. It even gives you the option to revert back to a previous revision — so don’t fret if you make a mistake — or receive updates on changes to the document right in your favorite feed reader.
Access Control – Each document is given a persistent URL (e.g., yourcompany.com/documents/2011/08/TPS-Report.doc) which can be private (securely delivered only to members of your organization), password protected (available only to those you select such as clients or contractors), or public (published and hosted for the world to see). If you catch a typo and upload a new version, that URL will continue to point to the latest version, regardless of how many changes you make.
Enterprise Security – Worried about storing propriety or sensitive information? WP Document Revisions was built from the first line of code with government- and enterprise-grade security in mind. Each file is masked behind an anonymous 128-bit MD5 hash as soon as it touches the server, and requests for files are transparently routed through WordPress’s time-tested URL rewriting, authentication, and permission systems (which can even integrate with existing enterprise active directory or LDAP servers). Need more security? WP Document Revisions allows you to store documents in a folder above the htdocs or public_html web root, further ensuring that only those you authorize have access to your work.
Customization – WP Document Revisions recognizes that no two teams are identical, and as a result, molds to your firm’s needs, not the other way around. Need to track additional information associated with a document? Departments, editors, issues, sections, even arbitrary key-value pairs — whatever you can throw at it, it can handle. Development and customization costs are further minimized by its extensive plugin API, and the WordPress Custom Taxonomy Generator makes it easy for even the uninitiated to add custom taxonomies to documents. Need an audit trail to track check-ins and check-outs? User-level permissions based on the document’s state or another custom taxonomy? Support for third-party encryption? Check out the WP Document Revisions Code Cookbook for sample code. Looking for even more advanced control of your workflow? WP Document Revisions will detect the popular workflow plugin Edit Flow, if installed, and will automatically pull Edit Flow’s advanced workflow management tools into WP Document Revisions. Simply put, virtually every aspect of the plugin’s functionality from workflow states to user-level permissions can be fully customized to your team’s unique needs.
Future Proof – Switching costs a concern? WP Document Revisions is built with tomorrow’s uncertainty in mind. Equally at home in an in-house server room as it is in the cloud, moving individual files or entire document repositories in and out of WP Document Revisions is a breeze (history and all). And since the software is open-source, you can easily add tools to automate the process of moving to or integrating with future third-party systems.
document-revisions extract-text command to backfill the extraction cache across an existing library, with --all/--missing/--id/--extractor/--force/--dry-run selectorsWPDR_TEXT_EXTRACTION, AI pre-fill respects WPDR_AI_SUMMARY_PREFILL and the core WP_AI_SUPPORT constantWP Document Revisions can email interested people when a document moves through your workflow — when it changes workflow state (for example, moved to Under Review or Approved) or when a new revision is saved. This turns workflow states from passive labels into an active review loop: the reviewer actually hears about it.
Notifications are opt-in and disabled by default, so enabling the plugin (or upgrading) never starts sending mail on its own.
Notifications are configured under Settings Media, in the Document Notifications section:
For each event, the recipients are:
with two rules always applied:
Each recipient receives their own copy — the recipient list is never exposed to the others, and no stray copy is sent to the site administrator.
Note on bulk edits: because a notification is sent per document, changing the workflow state of many documents at once (for example, a bulk edit) sends one notification per document. Use the
document_notification_recipientsfilter to suppress or reroute mail in that situation if needed.
Every part of the behavior is filterable. See Filters for full signatures. In brief:
document_notify_enabled, document_notify_on_state_change, document_notify_on_new_revision — force-enable or force-disable the master switch and each event.document_notification_recipients — receives ( array $emails, int $doc_id, string $event, int $actor_id ). This is the seam for advanced routing: notify prior editors, or route by workflow state (e.g. send Under Review transitions to a review team).document_notification_subject, document_notification_message — customize the email subject and body.document_notification_headers — add email headers (e.g. a From: or Reply-To:).`php
add_filter(
‘document_notification_recipients’,
function ( $emails, $doc_id, $event, $actor_id ) {
if ( ‘state_change’ !== $event ) {
return $emails;
}
$states = wp_get_object_terms( $doc_id, ‘workflow_state’, array( ‘fields’ => ‘names’ ) );
if ( in_array( ‘Under Review’, $states, true ) ) {
$emails[] = ‘[email protected]’;
}
return $emails;
},
10,
4
);
<h3>Delivery</h3>wp_mail()`. On sites with high mail volume or a slow mail server, install a transactional-email/SMTP plugin so delivery does not add latency to saving a document.
Notifications are sent through WordPress's standard
Interested in translating WP Document Revisions? You can do so via Crowdin, or by submitting a pull request.
Members – Membership & User Role Editor Plugin
(Previously called Members)