https://github.com/tomodomoco/wp-repeating-task-runner
Execute iterating/repeating commands in WordPress
https://github.com/tomodomoco/wp-repeating-task-runner
plugin wordpress
Last synced: 2 months ago
JSON representation
Execute iterating/repeating commands in WordPress
- Host: GitHub
- URL: https://github.com/tomodomoco/wp-repeating-task-runner
- Owner: TomodomoCo
- License: mit
- Created: 2017-06-15T14:50:19.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-11-27T16:00:40.000Z (over 7 years ago)
- Last Synced: 2025-07-02T13:52:08.975Z (12 months ago)
- Topics: plugin, wordpress
- Language: PHP
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# WP Repeating Task Runner
A WordPress plugin framework for executing iterating/repeating commands in the WordPress backend.
## Usage
Create a class with the following template:
```php
addCommand(new MyCommand);
return $tasks;
});
```
## Notes
General implementation notes and tips:
+ This plugin is in development, and the API is subject to change.
+ This plugin is intended for environments where "better" alternatives (wp-cli solutions, direct database manipulation, etc.) are not possible or could be problematic.
+ Your command is responsible for determining how it iterates, and what the meaning of an 'iteration' is at all.
+ Strive for statelessness.
## About Tomodomo
Tomodomo is a creative agency for magazine publishers. We use custom design and technology to speed up your editorial workflow, engage your readers, and build sustainable subscription revenue for your business.
Learn more at [tomodomo.co](https://tomodomo.co) or email us: [hello@tomodomo.co](mailto:hello@tomodomo.co)
## License & Conduct
This project is licensed under the terms of the MIT License, included in `LICENSE.md`.
All open source Tomodomo projects follow a strict code of conduct, included in `CODEOFCONDUCT.md`. We ask that all contributors adhere to the standards and guidelines in that document.
Thank you!