December 2017
Intermediate to advanced
364 pages
7h 30m
English
We will be using a tool called WP-CLI, which allows us to do many things in WordPress that traditionally require a web browser.
For example, the following command will download and set up a WordPress:
wp core install # with some options such as url, title of the website etc. etc.
A complete example can be found at https://developer.WordPress.org/cli/commands/core/#examples:
wp core install --url=example.com --title=Example --admin_user=supervisor --admin_password=strongpassword --admin_email=info@example.com ...