10up / wpinstructions
Run human-readable WordPress commands
Installs: 78 724
Dependents: 2
Suggesters: 0
Security: 0
Stars: 10
Watchers: 8
Forks: 5
Open Issues: 1
Requires
- php: >=7.2
- 10up/wpsnapshots: dev-master
- rmccue/requests: ^1.7
- symfony/console: ~4.1
- symfony/process: ^4.2
Requires (Dev)
- 10up/phpcs-composer: dev-master
This package is auto-updated.
Last update: 2024-05-02 18:49:57 UTC
README
WP Instructions lets you execute WordPress actions in human-readable format e.g. installing WordPress, activating plugins, etc. WP Instruction files can be provided to developers to ease local development setup and improve environment consistency.
Caution
As of 12 April 2024, this project is archived and no longer being actively maintained.
Requirements
- PHP 7.2+
Install
Install WP Instructions with Composer like so:
composer require 10up/wpinstructions
Usage
Instructions should be saved in a file named WPInstructions
. Here is an example of an instructions file:
install wordpress where url is http://wp.test
Install plugin where name is distributor and url is https://github.com/10up/distributor.git and version is latest
install theme where name is twentynineteen
You can execute the instruction file via the command line like so:
./vendor/bin/wpinstructions run
Every instructions contains an action
and a list of options
. In the instructions file above, install wordpress
is the action for the first command where url
is an option. Each instruction supports different options.
Supported Instructions
install wordpress
Options: [version] [site title] [site url] [home url] [admin email] [admin user] [admin password] [install type=(multisite|single)] [path=(path to WP directory)]
Installs WordPress. When using this instruction, you will need to pass the following parameters in via the command line: --config_db_host
, --config_db_name
, --config_db_user
, --config_db_pass
. For example:
./vendor/bin/wpinstructions run --config_db_host=localhost --config_db_name=wordpress --config_db_user=wordpress --config_db_pass=password
install theme
Options: [theme name=(theme slug)] [theme version] [theme url] [theme status=(enabled|disabled)
Installs a WordPress theme. theme url
should be used for installing a theme via zip or git. theme name
should match the theme slug.
install plugin
Options: [plugin name=(plugin slug)] [plugin version] [plugin url] [plugin status=(active|network active|inactive)
Installs a WordPress plugin. plugin url
should be used for installing a plugin via zip or git. plugin name
should match the plugin slug.
add site
Options: [site title] [site url] [home url] [admin email] [admin user] [admin password]
Add a site to a multisite instance. site_url
and home_url
are required as options.
activate plugin
Options: *[plugin name=(plugin slug)] [active type=(network|single)]
Activate a plugin.
enable theme
Options: *[theme name=(theme slug)]
Enable a theme.
Examples
See examples in EXAMPLES.md.
Support Level
Archived: This project is no longer maintained by 10up. We are no longer responding to Issues or Pull Requests unless they relate to security concerns. We encourage interested developers to fork this project and make it their own!