General (13 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Preview Blog Draft | 1.3.6 | 90 | 2 | 564 |
| |||
Let visitors can see the title of your draft post and content of "Coming Soon!" Want user to see what you are writing now (Draft Post)? Use this plugin now! This plugin will allow visitors to see the title of your draft post and content of "Coming Soon!". You may also change "Coming Soon!" to be your own word! Live Demo: Click Here Translators Chinese, Simplified (zh_CN) - Arefly Chinese, Traditional (zh_TW) - Arefly English (en_US) - Arefly If you have created your own language pack, or have an update of an existing one, you can send gettext PO and MO files to Arefly so that I can bundle it into Preview Blog Draft. You can download the latest POT file. | ||||||||
WP-Post-Meta-Revisions | 0.2.2 | 100 | 3 | 1532 |
| |||
Allow selected post meta keys to be tracked in revisions. This plugin implements a post meta revisioning feature as arrived at in https://core.trac.wordpress.org/ticket/20564. The goal of releasing this code as a plugin is to allow as many people as possible to easily test the post meta revisioning feature, and also hopefully move towards inclusion of the feature into core, following the Features as Plugins model. Further development of the code for this plugin will continue on its GitHub repository. Pull requests welcome! To use this plugin, you must be running WordPress 4.1 or newer, two hooks were added in 4.1 that are required for this implementation. To revision a post meta, you add its key via a filter: function add_meta_keys_to_revision( $keys ) { $keys[] = 'meta-key-to-revision'; return $keys; } add_filter( 'wp_post_revision_meta_keys', 'add_meta_keys_to_revision' ); Features: Allows for a whitelisted array of 'revisioned' meta keys (which can change at any time) A revision for the meta is stored on save (if the meta value has changed) A meta revision save (if changed) is also triggered during auto-saves Restoring a revision restores the revisioned meta field's values at that revision (including auto-saves) Supports storing of multiple values for a single key (and restoring them) Adds revisioned meta to the preview data via get_post_metadata Includes unit tests demonstrating feature Travis CI tests integrated with GitHub repository, props @mattheu | ||||||||
Simple Revisions Delete | 1.4.7 | 100 | 18 | 13519 |
| |||
What does it do? It helps you keep a clean database by removing unnecessary posts revisions. Unlike other similar plugins, it lets you delete only specific posts revisions, not all your site revisions at once. The plugin is perfectly integrated in the WordPress back-end, and uses native core functions to safely delete revisions. It is very lightweight, very simple to use, and just does the job! How does it work? The plugin adds a discreet link in the post submit box, next to the default revisions counter (see screenshots section). When you click on it, it will purge the appropriate post revisions via AJAX (no JS is also support). It also add a new bulk action option in the post/page row view to let you purge revisions of multiple posts at once. Since v1.3 you can delete a single revision at once (see screenshots). See plugin page NOTE: There is no admin page for this plugin - none is needed. Post Types support The default supported post types are post and page, but you can easily add custom post types or remove default post types with the following hook: function bweb_wpsrd_add_post_types( $postTypes ){ $postTypes[] = 'additional-cpt'; $postTypes[] = 'another-cpt'; return $postTypes; } add_filter( 'wpsrd_post_types_list', 'bweb_wpsrd_add_post_types' ); See CODEX to add support to all CPTs: https://codex.wordpress.org/Function_Reference/get_post_types Custom user capability The default capability to purge or remove rivisions is delete_post, but you can override this with the following hook: function bweb_wpsrd_capability() { return 'edit_post'; } add_filter('wpsrd_capability', 'bweb_wpsrd_capability'); Languages The plugin only bears a few sentences, but you can easily translate them through .MO & .PO files. Currently available languages are: English French Deutsch - Thanks to mallard66 Dutch - Thanks to jondor Become a translator and send me your translation! Contact-me CHECK OUT MY OTHER PLUGINS Please ask for help or report bugs if anything goes wrong. It is the best way to make the community benefit! | ||||||||
WP Revisions Control | 1.2.1 | 80 | 4 | 4619 |
| |||
Requires PHP: 5.6 Control how many revisions are stored for each post type. WordPress 3.6 allows users to control how many revisions are stored for each supported post type. No longer must you rely on the WP_POST_REVISIONS constant, which applied universally. This plugin provides an interface for this new functionality. With this plugin enabled, simply visit Settings > Writing to specify the number of revisions retained for each post type. Why is this helpful? Revisions are stored in the database, and if many are stored, can cause bloat. This bloat may lead to slower queries, which can have a noticeable performance impact. The value of these revisions also depends on what is being tracked. For example, I may want to store every revision of the posts I write, but only desire to keep the latest five versions of each page on my site. Starting in WordPress 3.6, this control is available. WordPress doesn’t provide a native interface to specify revisions quantities, so I wrote this quick plugin to do so. Thanks to Maria Ramos at WebHostingHub, the plugin is also available in Spanish. Many thanks to her for her efforts! Development is over on GitHub: https://github.com/ethitter/WP-Revisions-Control. | ||||||||
WP-DraftsForFriends | 1.0.2 | 100 | 5 | 6066 |
| |||
This plugin will generate a unique link that you can send to your friends to allow them to preview your draft before they are published. You are able to set the expiry for the link as well. Modified ... from Drafts for Friends originally by Neville Longbottom. Build Status Development https://github.com/lesterchan/wp-draftsforfriends Credits Plugin icon by Freepik from Flaticon Donations I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations. | ||||||||
WP Revisions Limit | 1.3 | 100 | 3 | 3645 |
| |||
Keep your WordPress fast and your database clean! WordPress 3.6 allows users to control how many revisions are stored for each supported post type. This plugin provides an interface for this new func... tionality. Why you should use this plugin? Each time you click Save Draft or Update, a revision is saved on the database. WordPress will store all revisions for each page on your blog. Revisions allow you to look back at the recent changes you’ve made and revert to an earlier version if necessary. But, what about all those revisions that you won't use anymore? Yes, they are still there, taking space from your hosting space and increasing the volume of your database and making it slower and heavier! With this plugin you can easily limit the number of revisions that you want to save, with this you are saving space on your database and keeping the overall site performance in good shape. How can I change/limit the number of revisions stored on my database? Once WP Revisions Limit plugin is installed and activated, go to Settings > Revisions Limit in your WordPress site and specify the number of revisions you want to store for each post/page under Revisions Options section. Compatibility: This plugin is fully compatible with any WordPress site with version 3.6 or higher. Requires at least WordPress 3.6 and PHP 5.3 Please show your support for this plugin by giving it a rating Development is on GitHub: https://github.com/rrodrigonuez/WP-Revisions-Limit Pull requests are more than welcome! | ||||||||
Draft List | 2.3.2 | 100 | 3 | 4660 |
| |||
Manage and promote your drafts and scheduled posts and pages. Draft List is a powerful method of showing draft and scheduled posts and pages on your site. Use it to show your visitors what's "coming soon" or as a great SEO tool. You can display this information using a widget or shortcode. Other options include: Configure your own look by using a template Show an icon on scheduled posts The resulting list is cached for streamline performance Meta box in editor allows you to omit individual posts from the lists Only show drafts within a particular timeframe Sequence the draft list in title, created date or modified date order Quick links added to admin menu for displaying draft posts and pages Fully internationalized ready for translations And much, much more! Other plugins are available to do this but none are as powerful as Draft List. How easy is it use? Here's an example of how you could use it in a post or page... [drafts limit=5 type=post order=ma scheduled=no template='%ul%%draft% %icon%'] This would display a list of up to 5 draft posts in ascending modified date sequence, with an icon displayed to the right of each if the draft is scheduled. For further instruction on use, including a list of all the available parameters, please read the "Other Notes" tab. | ||||||||
Quick Drafts Access | 2.2.1 | 100 | 5 | 9880 |
| |||
Adds links to 'All Drafts' and 'My Drafts' under Posts, Pages, and other custom post type sections in the admin menu. By default in WordPress, accessing the drafts listing of any given post type (including posts and pages) in the admin requires multiple clicks. Then filtering the drafts listing by a particular user (generally to view only your drafts) additionally requires some non-obvious manual URL hacking. This plugin allows you one click access to all drafts, as well as to just your drafts, of each post type via the main admin menu. In addition, the plugin provides a count of the number of current drafts for that post type in the link (i.e. the link could read “All Drafts (3)” to indicate there are three drafts for that post type, and “My Drafts (1)” to indicate you only have one draft for that post type). When the user is responsible for all of the drafts of a given post type (and the “My Drafts” link is not disabled via a hook) then only the “My Drafts” links will appear. It would be redundant to show both the “All Drafts” and “My Drafts” links in this situation. This behavior also ensures only one link is present for single-author blogs. Also, the draft link(s) only appear for users who have the capability to edit posts of that post type. The plugin hides the two types of draft links when no related drafts for that post type are present. See the Filters section for how to override this behavior. Filters are also provided to disable the plugin from ever showing the “All Drafts” or the “My Drafts” links. On plugin admin listings of only draft posts, this plugin also adds a dropdown above the table that allows for the listing to be filtered by the selected draft author. (Only users who actually have a draft post are included in the dropdown.) Links: Plugin Homepage | Plugin Directory Page | GitHub | Author Homepage Hooks The plugin is further customizable via five filters. Such code should ideally be put into a mu-plugin or site-specific plugin (which is beyond the scope of this readme to explain). c2c_quick_drafts_access_post_types The ‘c2c_quick_drafts_access_post_types’ filter allows you to customize the list of post_types for which the draft links will be shown. By default, draft links will be shown for all public post types, which includes the default post types of ‘post’ and ‘page’. If other post types have been added to your site, they will also automatically be taken into consideration. If you want to explicitly add or remove particular post types, use this filter. Arguments: $post_types (array): Array of post type objects Example: /** * Prevents the drafts menu link(s) from being displayed for the 'event' post type. * * @param array $post_types The post types that will show drafts menu links by default. * @return array */ function my_qda_mods( $post_types ) { $acceptable_post_types = array(); foreach ( (array) $post_types as $post_type ) { // Don't show the Drafts link for 'event' post type if ( ! in_array( $post_type->name, array( 'event' ) ) ) {// More post types can be added to this array $acceptable_post_types[] = $post_type; } } return $acceptable_post_types; } add_filter( 'c2c_quick_drafts_access_post_types', 'my_qda_mods' ); c2c_quick_drafts_access_show_all_drafts_menu_link The ‘c2c_quick_drafts_access_show_all_drafts_menu_link’ filter allows you to customize whether the ‘All Drafts’ link will appear at all for a post type. If true, then the ‘c2c_quick_drafts_access_show_if_empty’ filter would ultimately determine if the link should appear based on the presence of actual drafts. Arguments: $show (bool): The default boolean indicating if the ‘All Drafts’ link should be shown at all. Default is truee. $post_type (object): The post_type object Example: // Completely disable the 'All Drafts' link for all post types. add_filter( 'c2c_quick_drafts_access_show_all_drafts_menu_link', '__return_false' ); c2c_quick_drafts_access_show_my_drafts_menu_link The ‘c2c_quick_drafts_access_show_my_drafts_menu_link’ filter allows you to customize whether the ‘My Drafts’ link will appear at all for a post type. If true, then the ‘c2c_quick_drafts_access_show_if_empty’ filter would ultimately determine if the link should appear based on the presence of actual drafts. Arguments: $show (bool): The default boolean indicating if the ‘My Drafts’ link should be shown at all. Default is truee. $post_type (object): The post_type object Example: // Completely disable the 'My Drafts' link for all post types. add_filter( 'c2c_quick_drafts_access_show_my_drafts_menu_link', '__return_false' ); c2c_quick_drafts_access_show_if_empty The ‘c2c_quick_drafts_access_show_if_empty’ filter allows you to customize whether the ‘All Drafts’ and/or ‘My Drafts’ links will appear for a post type when that post type currently has no drafts. Arguments: $show (bool): The default boolean indicating if the Drafts link should be shown if the post type does not have any drafts. Default is false. $post_type_name (string): The post_type name $post_type (object): The post_type object $menu_type (string): The type of draft menu link. Either ‘all’ for ‘All Drafts’ or ‘my’ for ‘My Drafts’. Example: // Show the links to drafts even if no drafts exist for the post type or the user. add_filter( 'c2c_quick_drafts_access_show_if_empty', '__return_true' ); c2c_quick_drafts_access_disable_filter_dropdown The ‘c2c_quick_drafts_access_disable_filter_dropdown’ filter allowing for removal of the ‘Drafts By’ dropdown from drafts post list table. Arguments: $disable (bool): Disable the ‘drafts by’ dropdown? Default false. $post_type (string): The post type slug. Example: // Hide the dropdown filter for draft authors above the admin post listing // table in draft views. add_filter( 'c2c_quick_drafts_access_disable_filter_dropdown', '__return_true' ); | ||||||||
Thin Out Revisions | 1.8.3 | 100 | 14 | 32159 |
| |||
Enables flexible revision management for you. Abstract As its default behavior, WordPress makes a new revision when you update your post. This also happens when you do a preview before publication. This is too often even if you like revision control. Thin Out Revisions (TOR), a plugin for WordPress, will help you to keep unwanted revisions out. Basic Feature You can remove intermediate revisions during comparing in 'compare two revisions' mode in revision.php. To do it, simply press the 'Thin Out' button (fig. 1 in the screenshots page). And you can also remove each single revision from the Edit Post/Page screen (fig. 2). WordPress 3.5 and prior, which have an old revision screen, are no longer supported. When you publish a post If you are a careful author, I guess you have many revisions as a result of preview checks. TOR can clean them when you first publish your post. Just simply enable the following option in the 'Settings' - 'Thin Out Revisions' admin page (fig. 3). Delete revisions on initial publication Bulk erase of old revisions You can remove old revisions on the fly or daily as a scheduled task (fig. 3). Revision Memo The Revision Memo feature enables you to put a short text note on revisions. See the pictures (fig. 4, 5) in screenshots page. Make sure that you check the 'Revision Memo' screen option in Edit Post (Edit Page) screen. More to Describe TOR works fine in multisite environment. If you like it, please share it among your friends by doing Tweet or Like from the plugin home page. It will encourage the author a lot. Related Links: Plugin Homepage Japanese Homepage | ||||||||
Limit Post Revisions Network Option | 4.6 | 100 | 2 | 4989 |
| |||
A Multisite Network plugin to add Network Admin->Settings to limit, or disable, the number of post revisions and set the post autosave interval. A Multisite Network plugin to add Network->Settings to limit, or disable, the number of post revisions and set the post autosave interval. | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Revisionary | 1.1.13 | 82 | 14 | 39000 |
| |||
PublishPress Revisions gives you control over updating published content. Users can duplicate posts and submit changes. You can approve, reject or sch Have you ever wanted to allow certain users to submit changes to published content, with an editor reviewing those changes before publication? Doesn't it seem like setting a published post/page to a future date should schedule your changes to be published on that date, instead of unpublishing it until that date? Revisionary enables qualified users to submit changes to currently published posts or pages. Contributors also gain the ability to submit revisions to their own published content. These changes, if approved by an Editor, can be published immediately or scheduled for future publication. Partial Feature List Pending Revisions allow designated users to suggest changes to a currently published post/page Scheduled Revisions allow you to specify future changes to published content (either via Pending Revision approval or directly by fully qualified author/editor) Enchanced Revision Management Form Front-end preview display of Pending / Scheduled Revisions with "Publish Now" link New WordPress role, "Revisor" is a moderated Editor Works with blog-wide WordPress Roles, or in conjunction with Press Permit or Role Scoper Support Most Bug Reports and Plugin Compatibility issues addressed promptly following your support forum submission. Author is available for professional consulting to meet your configuration, troubleshooting and customization needs. | ||||||||
WP Document Revisions | 2.0.0 | 70 | 22 | 85205 |
| |||
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 is three things: A document management system (DMS), to track, store, and organize files of any format A collaboration tool to empower teams to collaboratively draft, edit, and refine documents A file hosting solution to publish and securely deliver files to a team, to clients, or to the public 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. For additional documenation, please see the Project Wiki. The Vitals: Support for any file type (docs, spreadsheets, images, PDFs -- anything!) Securely stores unlimited revisions of your business's essential files Provides a full file history in the form of a revision log, accessible via RSS Helps you track and organize documents as they move through your organization's existing workflow Each file gets a permanent, authenticated URL that always points to the latest version Each revision gets its own unique url (e.g.,TPS-Report-revision-3.doc) accessible only to those you deem Files are intuitively checked out and locked to prevent revisions from colliding Toggle documents between public, private, and password protected with a single mouse click Runs in-house or in the cloud Secure: filenames are hashed on upload and files are only accessible through WordPress's proven authentication system Can move document upload folder to location outside of web root to further ensure government- and enterprise-grade security Documents and Revisions shortcodes, Recently Revised Documents widget Multisite and Windows (XAMPP) support French and Spanish language support (easily translated to your language) Integration with Edit Flow Recently Revised Documents Widget, shortcodes, and templating functions for front-end integration Beta: WebDAV support. Edit via supported Microsoft Office versions (2010+) Features Available via the Code Cookbook: Audit Trail - creates check in / check out audit trail for all documents Taxonomy-based Permissions - allows setting user-level permissions based on a custom taxonomy such as department Third Party Encryption - example of how to integrate at rest encryption using third-party tools Rename Documents - changes all references to "Documents" in the interface to any label of your choosing State Change Notification - how to use document api to allow users to receive notification whenever documents change workflow state Bulk Import - how to batch import a directory (or other list) of files as documents Filetype Taxonomy - Adds support to filter by filetype Track Changes - Auto-generates and appends revision summaries for changes to taxonomies, title, and visibility Remove Workflow States - Completely removes Workflow state taxonomy backend and UI Change Tracker - Auto-generates and appends revision summaries for changes to taxonomies, title, and visibility Translations: French - Hubert CAMPAN Spanish - TradiArt and elarequi Norwegian - Daniel Haugen German -Konstantin Obenland Chinese - Tim Ren Swedish - Daniel Kroon, Examinare AB, Sweden. Czech - Hynek Šťavík Italian - @guterboit Russian - Evgeny Vlasov Dutch - @tijscruysen WP Document Revisions was developed by a law student and a business student with a grant from Google, and in close coordination with and under the watchful eye of WordPress.org's lead developers (Although neither relationship should imply an endorsement). Special thanks to Jon Cave, Aaron Jorbin, Mitcho Erlewine, and Andrew Nacin for their guidance. [Photo via antphotos] | ||||||||
Revision Control | 2.3.2 | 90 | 28 | 424279 |
| |||
Revision Control allows finer control over the Post Revision system included with WordPress Revision Control is a plugin for WordPress which gives the user more control over the Revision functionality. PLEASE NOTE: Active support for this plugin is no longer offered. The plugin allows the user to set a site-global setting (Settings -> Revisions) for pages/posts to enable/disable/limit the number of revisions which are saved for the page/post. The user may change this setting on a per-page/post basis from the Revisions Meta box. The plugin also allows the deletion of specific revisions via the Revisions post metabox. | ||||||||
Unsorted Plugins (1 plugins) | ||||||||
Plugin Name | Version | Rating | Reviews | Downloads | Flag | |||
Edit Flow | 0.9 | 82 | 47 | 216226 |
| |||
Redefining your editorial workflow. Edit Flow empowers you to collaborate with your editorial team inside WordPress. We’ve made it modular so you can customize it to your needs: Calendar – A convenient month-by-month look at your content. Custom Statuses – Define the key stages to your workflow. Editorial Comments – Threaded commenting in the admin for private discussion between writers and editors. Editorial Metadata – Keep track of the important details. Notifications – Receive timely updates on the content you’re following. Story Budget – View your upcoming content budget. User Groups – Keep your users organized by department or function. More details for each feature, screenshots and documentation can be found on our website. We’d love to hear from you! For support questions, feedback and ideas, please use the WordPress.org forums, which we look at often. If you’d like to contribute code, we’d love to have you involved. | ||||||||