I have been using this plugin for several years – and have a copy of V2.0 of the plugin.
It has never supported the standard category – and I use a different plugin to provide an equivalent function.
You can easily extend the plugin to make use of categories.
- Create a folder called wp-document-revisions-cat
- Create a file called wp-document-revisions-cat.php within it.
- Enter the following text in this file:
<?php
/**
Plugin Name: WP Document Revisions Cat
Description: Adds Category to WP Document Revisions
Version: 1
Author: Neil James
License: GPL3
*
@package wp-document-revisions-cat
*/
add_filter( 'document_revisions_cpt', 'add_category_doc' );
function add_category_doc( $args ) {
$args['taxonomies'] = array( 'category' );
return $args;
}
- Go to the application and activate the plugin “WP Document Revisions Cat”
Hope this is of use,
Neil