https://github.com/drzraf/wp-revisions-prune
Filters and prune a list of WP posts revisions
https://github.com/drzraf/wp-revisions-prune
command-line revisions wordpress wp-cli wp-cli-package
Last synced: about 1 month ago
JSON representation
Filters and prune a list of WP posts revisions
- Host: GitHub
- URL: https://github.com/drzraf/wp-revisions-prune
- Owner: drzraf
- License: mit
- Created: 2021-09-27T14:08:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-01-28T18:58:14.000Z (over 1 year ago)
- Last Synced: 2025-03-25T09:21:34.424Z (about 1 year ago)
- Topics: command-line, revisions, wordpress, wp-cli, wp-cli-package
- Language: PHP
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
drzraf/wp-revisions-prune
========================
Prune revisions
Quick links: [Using](#using) | [Installing](#installing) | [Contributing](#contributing) | [Support](#support)
## Using
This package implements the following commands:
### wp revisions prune
Prune a list of revisions
This command does not touch the database (not even attempt to read from it). Instead, it acts as a filter after a CSV list
(in the following format: `, , `) and returns a pruned list of lines (or raw post ID) according to the
pruning "policy" specified in on the command line.
The CSV can be generated using:
- `wp post list --post_type=revision --format=csv --fields=ID,post_name,post_date_gmt`
- `wp revisions list --format=csv --fields=ID,post_name,post_date_gmt --yes`
~~~
wp revisions prune [--file=] [--post_id=] [--fields=] [--yes] [--format=] [--file=] [--keep-last=] [--keep-hourly=] [--keep-daily=] [--keep-weekly=] [--keep-monthly=] [--keep-yearly=] [--keep-less-than-n-rev=] [--keep-before=] [--keep-after=] [--list]
~~~
**OPTIONS**
[--file=]
: Use input CSV file. (stdin otherwise or if does not exists)
[--keep-last=]
: Keep at least revisions.
[--keep-hourly=]
: Number of hourly revisions to keep.
[--keep-daily=]
: Number of daily revisions to keep.
[--keep-weekly=]
: Number of weekly revisions to keep.
[--keep-monthly=]
: Number of monthly revisions to keep.
[--keep-yearly=]
: Number of yearly revisions to keep.
[--keep-less-than-n-rev=]
: Disregard pruning revisions of posts having less than revisions.
[--keep-before=]
: Keep revisions published on or before this date.
[--keep-after=]
: Keep revisions published on or after this date.
[--list]
: Output verbose list of revisions it keeps/prunes
With --list=removed only output the flat list of post ID to remove.
**EXAMPLES**
wp revisions list --format=csv --fields=ID,post_name,post_date_gmt --yes | wp revisions prune --keep-daily=1 --list
wp revisions list --format=csv --fields=ID,post_name,post_date_gmt --yes | wp revisions prune --keep-hourly=2 --list=removed
## Installing
Installing this package requires WP-CLI v2.1 or greater. Update to the latest stable release with `wp cli update`.
Once you've done so, you can install this package with:
wp package install git@github.com:drzraf/wp-revisions-prune.git
## Contributing
We appreciate you taking the initiative to contribute to this project.
Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.
For a more thorough introduction, [check out WP-CLI's guide to contributing](https://make.wordpress.org/cli/handbook/contributing/). This package follows those policy and guidelines.
### Reporting a bug
Think you’ve found a bug? We’d love for you to help us get it fixed.
Before you create a new issue, you should [search existing issues](https://github.com/drzraf/wp-revisions-prune/issues?q=label%3Abug%20) to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version.
Once you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please [create a new issue](https://github.com/drzraf/wp-revisions-prune/issues/new). Include as much detail as you can, and clear steps to reproduce if possible. For more guidance, [review our bug report documentation](https://make.wordpress.org/cli/handbook/bug-reports/).
### Creating a pull request
Want to contribute a new feature? Please first [open a new issue](https://github.com/drzraf/wp-revisions-prune/issues/new) to discuss whether the feature is a good fit for the project.
Once you've decided to commit the time to seeing your pull request through, [please follow our guidelines for creating a pull request](https://make.wordpress.org/cli/handbook/pull-requests/) to make sure it's a pleasant experience. See "[Setting up](https://make.wordpress.org/cli/handbook/pull-requests/#setting-up)" for details specific to working on this package locally.
## Support
Github issues aren't for general support questions, but there are other venues you can try: https://wp-cli.org/#support
*This README.md is generated dynamically from the project's codebase using `wp scaffold package-readme` ([doc](https://github.com/wp-cli/scaffold-package-command#wp-scaffold-package-readme)). To suggest changes, please submit a pull request against the corresponding part of the codebase.*